Skip to content

Instantly share code, notes, and snippets.

@alphamu
alphamu / android - SquareLinearLayout
Created September 16, 2013 05:46
Android LinearLayout with the same height as width.
import android.content.Context;
import android.util.AttributeSet;
import android.widget.LinearLayout;
public class SquareLinearLayout extends LinearLayout {
public SquareLinearLayout(Context context, AttributeSet attrs) {
super(context, attrs);
}