我有一个列表视图,其中每个项目都有 2 个视图(这ListView
看起来像一个GridView
有 2 列的项目)。我需要页眉和页脚,但它们在 中不可用GridView
,所以我转向使用列表视图。
我想要一个用于每个列表项的单个子视图的选择器,列表选择器不起作用,它将选择器应用于两个子视图。
到目前为止我已经尝试过什么????
我制作每个单个元素的根视图 aFrameLayout
并使用该android:foreground="@drawable/some_selector"
属性,以便模拟该drawSelectorOnTop
属性。
我的问题 :
如何将选择器仅应用于列表视图项中的按下子项。
列表视图布局
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ListView
android:id="@+id/episode_list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:divider="@android:color/black"
android:dividerHeight="5dp"
android:listSelector="@null"
android:descendantFocusability="afterDescendants" />
</RelativeLayout>
剧集项目
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clickable="true"
android:foreground="@drawable/all_show_cell_background_selector" >
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/llEpisode"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#282828"
android:paddingBottom="5dp" >
<ImageView
android:id="@+id/episodeImage"
android:layout_width="160dp"
android:layout_height="90dp"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_gravity="center_vertical|center_horizontal"
android:adjustViewBounds="true"
android:contentDescription="@string/app_name"
android:scaleType="centerCrop"
android:src="@drawable/video_blank" />
<TextView
android:id="@+id/episodeDuration"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@id/episodeImage"
android:layout_alignLeft="@id/episodeImage"
android:background="@android:color/black"
android:gravity="right"
android:padding="2dp"
android:textColor="#FFFFFF"
android:textSize="11sp" />
<!-- android:textColor="#b5b4b4" -->
<TextView
android:layout_marginTop="2dp"
android:id="@+id/episodeTitle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/episodeImage"
android:gravity="right"
android:paddingRight="5dp"
android:singleLine="true"
android:text="hdgsagafasfsdafsdfsdfasddfsad"
android:textColor="#ffffff"
android:textSize="14sp" >
</TextView>
<TextView
android:id="@+id/showName"
android:layout_marginTop="2dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/episodeTitle"
android:clickable="true"
android:gravity="right"
android:paddingRight="5dp"
android:text="hdgsagafasfsdafsdfsdfasddfsad"
android:textColor="#A8A8A8"
android:textSize="13sp" >
</TextView>
<TextView
android:layout_marginTop="2dp"
android:id="@+id/noOfViewsText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_below="@+id/showName"
android:layout_alignParentBottom="true"
android:gravity="right"
android:paddingRight="5dp"
android:text="@string/number_of_views_text"
android:textColor="#A8A8A8"
android:textSize="11sp" />
<TextView
android:id="@+id/episodeNumberOfViews"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/noOfViewsText"
android:layout_toLeftOf="@+id/noOfViewsText"
android:layout_toRightOf="@+id/fav_img"
android:ellipsize="none"
android:gravity="right"
android:paddingRight="5dp"
android:singleLine="true"
android:text="fsdafasdfsad"
android:textColor="#A8A8A8"
android:textSize="11sp" />
<ImageView
android:id="@+id/fav_img"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/episodeNumberOfViews"
android:layout_alignParentLeft="true"
android:layout_marginLeft="4dp"
android:contentDescription="@string/favourite_title_show"
android:src="@drawable/fav_episode" />
</RelativeLayout>
</FrameLayout>
单个列表项包含 2 个剧集项
这是包含 2 个剧集项目的容器
<?xml version="1.0" encoding="utf-8"?>
<!-- This container to help emulate a GridView in each ListView item -->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:descendantFocusability="afterDescendants"
android:orientation="horizontal" >
</LinearLayout>