TextView 放置在 TableLayout 中时会被截断

发布于 2024-11-25 07:11:19 字数 1384 浏览 1 评论 0原文

我有一个用 TextView 动态填充的 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 顶部添加按钮,所以我首先将 ListView 移动到 TableLayout 中:

<?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>

但是,TextView 中的文本被截断:它超出了 Activity 的右侧屏幕。

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

有什么想法吗?

问候,

I have a ListView dynamically populated with TextViews:

<?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>

But I want to add buttons on top of the Activity, so I first moved my ListView in a TableLayout:

<?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>

But then, the text in the TextViews is truncated: it goes over the right side of the screen.

I tryed different values for the android:layout_width attributes, but nothing is changed.

Any idea?

Regards,

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

捶死心动 2024-12-02 07:11:19

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

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

也许还有其他方法,我很有兴趣听听。

You could instead use addHeaderView() or addFooterView() respectively to add a LinearLayout with horizontal orientation to your ListView, that contains a few buttons and completely eliminate the TableLayout solution. I've used this method before and it works well.

You could also float the buttons with a RelativeLayout and use addHeaderView/addFooterView to insert a spacer so they don't overlap the ListView.

Maybe there are other ways too, I would be interested to hear them.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文