当前位置:   article > 正文

Android 控件水平,平均分配空间_linearlayout 水平分散布局

linearlayout 水平分散布局

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

<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"
              android:orientation="horizontal"<!--注意设置horizontal-->
              android:background="@android:color/white"
              android:layout_width="match_parent"
              android:layout_height="match_parent">
    <控件
        android:layout_weight="1" <!--注意设置weight-->
        android:text="aaaaaaaaaaaa"
        android:layout_width="wrap_content"<!--注意设置wrap_content-->
        android:layout_height="wrap_content"/><!--注意设置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>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/270380
推荐阅读
相关标签