Android 控件水平,平均分配空间

注意四点
第一:设置LinearLayout 设置水平horizontal
第二:设置LinearLayout 高宽为match_parent
第三:设置控件 android:layout_weight=“1”
第四:设置控件 高宽为wrap_content
参考下面


              android:background="@android:color/white"
              android:layout_width="match_parent"
              android:layout_height="match_parent">
    <控件
        android:layout_weight="1" 
        android:layout_height="wrap_content"/>
    <控件
        android:layout_weight="1"
        android:text="bbbbb"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"/>
    <控件
        android:layout_weight="1"
        android:text="c"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"/>
LinearLayout>

你可能感兴趣的:(Android,android)