我有一点点"图形"列表视图的问题。当应用程序完成填充项目时,即使我将其高度和宽度声明为wrap_content,它们中的每一个都显得如此之高......
这是xml:
<?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>
答案 0 :(得分:0)
尝试此代码创建一个单独的列表选择器xml,如list_row.xml,并将此标题映射到您在应用程序中使用的列表视图。这是列表视图xml中的列表视图代码。
<ListView
android:id="@+id/list"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:divider="@drawable/hline"
android:dividerHeight="1dp"
android:listSelector="@drawable/list_select" />
Here i mentioned the list selector below
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/list_select"
android:orientation="horizontal"
android:padding="5dip" >
<LinearLayout
android:id="@+id/thumbnail"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_alignParentLeft="true"
android:layout_marginRight="5dip"
android:padding="3dip" >
</LinearLayout>
<LinearLayout
android:id="@+id/thumbnail"
android:layout_width="220dp"
android:layout_height="40dp"
android:layout_alignTop="@+id/thumbnail"
android:layout_centerHorizontal="true"
android:padding="3dip" >
<TextView
android:id="@+id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/imageView1"
android:layout_gravity="center_vertical"
android:layout_toRightOf="@+id/thumbnail"
android:text=".."
android:textAlignment="center"
android:textColor="#040404"
android:textSize="12dip"
android:textStyle="normal"
android:typeface="sans" />
</LinearLayout>
</RelativeLayout>