关于LinearLayout布局中,子控件平分宽度

 

示例代码如下:

 

<LinearLayout 

android:orientation="horizontal"

android:layout_width="fill_parent" 

android:layout_height="wrap_content"

android:layout_alignParentBottom="true">

<Button 

android:id="@+id/btn_login" 

android:layout_width="0.0px"

android:layout_height="wrap_content" 

android:text="@string/login"

android:layout_weight="1.0"/>

<Button android:id="@+id/btn_logoff" 

android:layout_width="0.0px"

android:layout_height="wrap_content" 

android:text="@string/logoff"

android:layout_weight="1.0"

android:enabled="false"/>

</LinearLayout>

 

粗体即为指定各个控件的比重,这样指定以后,两个控件的比重一样,那么就会平分宽度了!

 

 

 

你可能感兴趣的:(LinearLayout)