放置在TableLayout中时,TextView会被截断

时间:2011-07-19 23:33:31

标签: android textview tablelayout

我有一个用TextViews动态填充的ListView:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent">
        <ListView
                android:id="@android:id/list"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:layout_above="@+id/transport_selection"
                />
</LinearLayout>

但是我想在Activity的顶部添加按钮,所以我首先在ListLayout中移动了ListView:

<?xml version="1.0" encoding="utf-8"?>
<TableLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent">

    <TableRow android:id="@+id/tableRow2" android:layout_width="fill_parent" android:layout_height="fill_parent">
        <ListView
                android:id="@android:id/list"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:layout_above="@+id/transport_selection"
                />
   </TableRow>
</TableLayout>

但是,TextViews中的文本被截断:它越过屏幕的右侧。

我为android:layout_width属性尝试了不同的值,但没有任何改变。

有什么想法吗?

此致

1 个答案:

答案 0 :(得分:1)

您可以分别使用addHeaderView()或addFooterView()来向ListView添加具有水平方向的LinearLayout,其中包含几个按钮并完全取消TableLayout解决方案。我之前使用过这种方法,效果很好。

您还可以使用RelativeLayout浮动按钮,并使用addHeaderView / addFooterView插入间隔符,使它们不与ListView重叠。

也许还有其他方法,我很想听听它们。