我是Android开发的新手。
我尝试使用LinearLayout
,最后使用TableLayout
。
我需要一个包含3列的简单固定可滚动表格,但我无法获得单个列表行来执行我需要的操作...我有ListView
和ListActivity
及其{{{} 1}}已排序。
基本上我想要:
Adapter
这是我最新的xml:
|-----------------------------------------|
| This title exceeds th....| $500 | Icon |
| This title fits | $1000 | Icon |
| Other title | $25 | Icon |
| Another long title th... | $1200 | Icon |
|-----------------------------------------|
结果是有时图标不在最右边,标题文字没有固定的宽度......
我搜索了很多问题并尝试了很多东西(参见<?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>
<TextView
android:id="@+id/title"
android:layout_height="45dip"
android:layout_width="wrap_content"
android:layout_marginRight="10dip"
android:layout_weight="6"
android:ellipsize="end"
android:singleLine="true"
android:text="A long Title it is"
android:textSize="24sp" />
<TextView
android:id="@+id/price"
android:layout_width="wrap_content"
android:layout_height="45dip"
android:layout_weight="3"
android:layout_marginRight="10dip"
android:ellipsize="marquee"
android:singleLine="true"
android:text="Price"
android:textSize="24sp" />
<ImageButton
android:layout_weight="1"
android:id="@+id/cart"
android:gravity="end"
android:src="@drawable/cart"
android:layout_width="45dp"
android:layout_height="30dp" >
</ImageButton>
</TableRow>
</TableLayout>
),但到目前为止它似乎没有用。感谢。
答案 0 :(得分:1)
在表格行(或线性布局的水平方向)中,建议在处理android:layout_width="0dp"
时使用android:layout_weight
请尝试将layout_width属性设置为0dp。我认为它可以工作。