gpt4 book ai didi

android - 带有图像和文本的 TableLayout

转载 作者:太空狗 更新时间:2023-10-29 14:34:18 25 4
gpt4 key购买 nike

我想在表格行的左侧单元格中显示图像,在右侧单元格中显示文本。

我的问题是 TextView 漂浮在可见屏幕之外,所以我看不到整个文本。文本应该在屏幕可见的右端中断。我尝试用像素值设置 maxWidth,但这不起作用。

谁能解决我的问题。也许有更好的布局选项?

我的布局定义:

<TableRow>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:tint="#55ff0000"
android:src="@drawable/bla"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/aboutblaImageText"
android:textSize="6pt"
android:textColor="#FFF"
android:maxWidth="100px"
/>
</TableRow>

最佳答案

尝试设置表格的 stretchColumns 和 shrinkColumns 属性。它对我有用。

<TableLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:stretchColumns="0"
android:shrinkColumns="1">

我从 Jonathan Roth 在 this 中的回答中得到了这个想法。发布。

关于android - 带有图像和文本的 TableLayout,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3067915/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com