2

而不是解释发生了什么,这里是一个屏幕截图:

正如你所看到的,我的物品清单在商店里到处都是。将同时粘贴 activity_main.xml 和另一个格式化列表的 list_row.xml

ACTIVITY_MAIN.XML

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#121212">
<ImageView
android:id="@+id/imageView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:src="@drawable/logo" />
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/main_title"
android:textColor="#33b5e5"
android:background="#1f1f1f"
android:textStyle="bold"
android:textSize="14sp"/>
<ListView
android:id="@+id/android:list"
android:background="#121212"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:dividerHeight="2dip"/>
</LinearLayout>

LIST_ROW.XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="?android:attr/listPreferredItemHeight"
android:padding="6dip"
android:background="#121212">
<TableLayout
android:layout_width="fill_parent"
android:layout_weight="1"
android:layout_height="fill_parent"
android:stretchColumns="*"
android:background="#121212">
<TableRow>
<ImageView
android:id="@+id/icon"
android:padding="2dip"
android:background="#121212"/>
<TextView
android:id="@+id/description"
android:padding="2dip"
android:textSize="18sp"
android:textColor="#ffffff"
android:singleLine="true"
android:background="#121212"/>
</TableRow>
</TableLayout>
</LinearLayout>
4

2 回答 2

1

尝试为 ImageView 和 TextView 赋予权重,例如 android:layout_weight 作为您想要的比例。并且不要忘记使 android:layout_width = "match_parent" 否则权重将无效..

于 2013-08-06T09:40:34.693 回答
0

去除Table layout

并使用它

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="64dp"
    android:background="#121212"
    android:orientation="horizontal"
    android:padding="6dip" >

    <ImageView
        android:id="@+id/icon"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:background="#121212"
        android:padding="2dip"
        android:src="@drawable/instructions" />

    <TextView
        android:id="@+id/description"
        android:layout_width="0dp"
        android:layout_weight="1"
        android:layout_height="match_parent"
        android:background="#121212"
        android:padding="2dip"
        android:singleLine="true"
        android:text="tomer"
        android:textColor="#ffffff"
        android:textSize="18sp" />

</LinearLayout>
于 2013-08-06T09:40:23.097 回答