0
我有一個「圖形」問題與一個列表視圖。當應用程序完成灌裝的物品,他們的每一個人出現這麼多高大,即使我宣佈他們的高度和寬度WRAP_CONTENT ...
這裏是XML:
ListView項目顯示太高
<?xml version="1.0" encoding="UTF-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/LinearLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/paperback"
>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
>
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:focusable="false"
android:focusableInTouchMode="false"
android:maxLines="1"
android:text="Large Text"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textColor="#FF0000"
android:textSize="16sp"
/>
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:focusable="false"
android:focusableInTouchMode="false"
android:maxLines="3"
android:text="Small Text"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="#000000"
android:textSize="12sp"
/>
</LinearLayout>
</LinearLayout>
嘗試,因爲它不是爲你做任何事情在這裏卸下外的LinearLayout。編輯:實際上,它沒有做任何事情,它可能會搞亂你的佈局:-) – Joris
這段代碼中的listview在哪裏? – InnocentKiller
@Joris外部佈局是爲了包含整個視圖的背景。內部佈局是包含列表視圖;) –