gpt4 book ai didi

android - 一行内表格布局中的图像问题

转载 作者:行者123 更新时间:2023-11-30 04:21:47 24 4
gpt4 key购买 nike

我正在尝试显示[在表格布局中播放两个图像。然而,第二张图片始终没有出现在显示屏中。我在第一行添加了一行文字。第二行是有 2 张图片的行,第二张图片向右滑动太多。我尝试玩 android:width 但它不影响布局。有什么想法吗?

<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >

<TableRow
android:layout_width="wrap_content"
android:layout_height="wrap_content" >

<TextView
android:id="@+id/name1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="You should start..." />
</TableRow>

<View
android:layout_height="2dip"
android:background="#FF909090" />

<TableRow
android:layout_width="wrap_content"
android:layout_height="wrap_content" >

<ImageView
android:id="@+id/imageView1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:width="50px" />

<ImageView
android:id="@+id/imageView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingLeft="180dip" />
</TableRow>

enter image description here

最佳答案

你的第一张图片和 TextView 的 layout_width 是 android:layout_width="fill_parent" 使用 android:layout_width="wrap_content" 如下。

<TextView
android:id="@+id/name1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="You should start..." />


<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:width="50px" />

关于android - 一行内表格布局中的图像问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9148456/

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