首页 要闻 中国 经济 财经 品牌 点评 会展 综合 | English
中国品牌要闻网-传递资讯的价值打造品牌的影响
您现在的位置:首页/运动品牌/ 正文
TableLayout布局标签的一个特有属性Stretchcolumns
来源:
编辑:
时间:2021-06-23

    stretchColumns是TableLayout布局标签的一个特有属性,用来设置TableLayout的子标签TableRow的某列是否拉伸占满剩余的空间。例如:TableRow相当html中table的tr标签,TableRow中有两个按钮button(相当两个列td)一行显示,假如此时TableRow的宽度是700px,每个button长度是50px,那么这一行的右边600px是空的,所为了让这行铺满,就得使用android:stretchColumns。


     android:stretchColumns="*"代表TableRow中的每一列都平均拉长铺满一行(每个td宽度一样)
     android:stretchColumns="0"代表TableRow中的每第一列拉长铺满一行
     android:stretchColumns="1"代表TableRow中的每第二列拉长铺满一行
     android:stretchColumns="0,1"代表TableRow中的每第一列和第二列平均拉长铺满一行
     TableLayout的基本使用方法:
     < ?xml version="1.0" encoding="utf-8"?>
     <TableLayout xmlns:android="
     android:layout_width="fill_parent"
     android:layout_height="fill_parent"
>
<TableRow>
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button1"
android:layout_column="0"/>
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello, I am a Button2"
android:layout_column="1"/>
</TableRow>
</TableLayout>

免责声明:本文仅代表作者个人观点,与本网无关。其原创性以及文中陈述文字和内容未经本站证实, 对本文以及其中全部或者部分内容、文字的真实性、完整性、及时性本站不作任何保证或承诺, 请读者仅作参考,并请自行核实相关内容。当事人(单位)如有异议,请参阅《删帖说明》办理。
中国品牌要闻网-传递资讯的价值打造品牌的影响
编辑:综合整理
2024-10-29
评论(0)
编辑:综合整理
2024-10-01
评论(0)
  • CopyRight@ 2005-2022 中国品牌要闻网
  • 工商注册号 430122000189097
  • ICP备案许证:渝ICP备2022012785号