So.. I am defining a custom view / layout that looks like follows:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:weightSum="3">
<Button
android:id="@+id/option_a"
style="?android:selectableItemBackground"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="One"
android:background="?android:selectableItemBackground"
android:textAppearance="?android:attr/textAppearanceButton"
android:textColor="@android:color/secondary_text_dark" />
<Button
android:id="@+id/option_b"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Two"
android:background="?android:selectableItemBackground"
android:textColor="@android:color/holo_red_dark"
android:textAppearance="?android:attr/textAppearanceButton" />
<Button
android:id="@+id/option_c"
style="?android:selectableItemBackground"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Three"
android:background="?android:selectableItemBackground"
android:textAppearance="?android:attr/textAppearanceButton"
android:textColor="@android:color/secondary_text_dark" />
</LinearLayout>
Result:
But then I add my custom view in another layout like follows:
<com.xxx.xxx.xxx.ThreeStatePreference
android:id="@+id/mode"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
Result:
Looks like that is completely ignoring the "weight" property. What am I doing wrong?
PD: I found a code solution:
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec){
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
int wspec = MeasureSpec.makeMeasureSpec(getMeasuredWidth()/getChildCount(), MeasureSpec.EXACTLY);
int hspec = MeasureSpec.makeMeasureSpec(getMeasuredHeight(), MeasureSpec.EXACTLY);
for(int i=0; i<getChildCount(); i++){
View v = getChildAt(i);
v.measure(wspec, hspec);
}
}
But I would like to know if this is possible to do using the XML.