それぞれ2つのビューを保持するアイテムを含むリストビューがあります(これは2つの列を持つListView
のように見えGridView
ます)。ヘッダーとフッターが必要でしたが、では使用できないGridView
ため、リストビューを使用することにしました。
各リストアイテムの個々の子ビューのセレクターが必要ですが、リストセレクターが機能しませんでした。セレクターは、両方の子ビューに適用されます。
私がこれまでに試したことは????
各単一要素のルートビューをaにし、属性FrameLayout
を使用して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>
1つのリストアイテムには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>