行内表格布局中的图像问题
我正在尝试在表格布局中显示[播放两个图像。然而,第二张图片始终不出现在显示屏中。我在第一行添加了一行文本。第二行是有 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>
I am trying to dis[play two imgages in a tablelayout. However the second picture is always not appearing in the display. I added a row of text in the first row. Second row is the row with 2 images the second image is sliding too much to the right ..I tried playing android:width but it doesn'teffect the layout.Any ideas?
<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>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的第一个图像和 TextView 的layout_width是
android:layout_width="fill_parent"
使用
android:layout_width="wrap_content"
如下。Your first image's and TextView's layout_width is
android:layout_width="fill_parent"
use
android:layout_width="wrap_content"
as follows.