Android   发布时间:2022-04-28  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了android – 展开TableLayout的最后一行大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个大约3行的TableLayout.我想得到最后一行的高度来填充View的其余部分,但没有太多运气(因为使用 Android布局是徒劳的教训).这是我到目前为止:

<TableLayout xmlns:android="http://scheR_335_11845@as.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:stretchcolumns="*" >

     <TableRow android:padding="5dip">
          <TextView
             android:text="Row 1"
          />
     </TableRow>
     <TableRow android:padding="5dip">
         <TextView
            android:text="Row 2"
          />
    </TableRow>
    <TableRow android:padding="5dip" android:layout_height="fill_parent">
        <TextView
             android:text="Row 3"
          />
    </TableRow>
</TableLayout>

解决方法

只需使用更简单的LinearLayout. 0dp以下是故意的.

<LinearLayout xmlns:android="http://scheR_335_11845@as.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" android:orientation="vertical">

     <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:padding="5dip" android:orientation="horizontal">
          <TextView
             android:text="Row 1"
          />
     </LinearLayout>
     <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:padding="5dip" android:orientation="horizontal">
         <TextView
            android:text="Row 2"
          />
    </LinearLayout>
    <LinearLayout android:layout_width="fill_parent" android:padding="5dip" android:layout_height="0dp" android:layout_weight="1" android:orientation="horizontal">
        <TextView
             android:text="Row 3"
          />
    </LinearLayout>
</LinearLayout>

大佬总结

以上是大佬教程为你收集整理的android – 展开TableLayout的最后一行全部内容,希望文章能够帮你解决android – 展开TableLayout的最后一行所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。