我正在尝试为我的应用创建一种卡片布局。在activity_events下,我需要将list_row设置为列表中每个项目的背景。如下所示,应用程序在调用活动时崩溃。但是删除J ListView android:background="@layout/list_row"
导致一切正常,只是不正常。我已经尝试将list_row移动到drawable文件夹并使用@drawable/list_row
,这也不起作用。列表视图中的背景是否存在一些我不明白的限制?
以下是activity_events.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<ListView
android:id="@+id/android:list"
android:layout_marginLeft="16dp"
android:layout_marginRight="16dp"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:divider="@null"
android:dividerHeight="0dp"
android:background="@layout/list_row">
</ListView>
<ProgressBar
android:id="@+id/eventsProgressBar"
style="?android:attr/progressBarStyleLarge"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true" />
</LinearLayout>
以下是list_row.xml
<?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_selector"
android:orientation="horizontal"
android:padding="5dip" >
<!-- ListRow Left side Thumbnail image -->
<LinearLayout
android:id="@+id/thumbnail"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_marginRight="5dip"
android:padding="3dip"
android:orientation="vertical">
<ImageView
android:id="@+id/list_image"
android:contentDescription="@string/app_name"
android:layout_width="60dip"
android:layout_height="60dip"
android:src="@drawable/barjinx_logo" /> <!--Removal makes it work!-->
</LinearLayout>
以下是list_selector.xml
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
<item
android:state_selected="false"
android:state_pressed="false"
android:drawable="@drawable/gradient_bg" />
<item android:state_pressed="true"
android:drawable="@drawable/gradient_bg_hover" />
<item android:state_selected="true"
android:state_pressed="false"
android:drawable="@drawable/gradient_bg_hover" />
答案 0 :(得分:1)
无法将布局用作背景。您只能使用Color
或Drawable
。
行布局在ListAdapter.getView()
。
修改强>
您的ListView应如下所示:
<ListView
android:id="@+id/android:list"
android:layout_marginLeft="16dp"
android:layout_marginRight="16dp"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:divider="@null"
android:dividerHeight="0dp"
android:listSelector="@drawable/list_selector">
</ListView>
要设置列表行的样式,您需要创建ListAdapter
。由于您使用的是自定义布局,因此您需要展开{{1}}或ArrayAdapter<?>
,然后致电BaseAdapter
上的ListView.setListAdapter(ListAdapter)
。查看Vogella的this article。
答案 1 :(得分:0)
您不必在ListView
上添加背景,您需要将适配器(扩展BaseAdapter
)设置为ListView
并让它从{{1}返回您的布局(您可以使用getView()
类来充气LayoutInflater
)
编辑:更多信息here