ListView
をCardView
で実装しましたが、いくつかのオンラインチュートリアルに続いています。このスクリーンショットで見られるように、ユーザは、カードをタップしたときに、リストListView with CardViews with margin and padding
<ListView
android:id="@+id/interactions_list"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_alignParentStart="true"
android:layout_marginTop="10dp"
android:visibility="invisible"
android:layout_alignParentTop="true"
android:divider="#000000"
android:dividerHeight="4dp"
/>
要素のレイアウト
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="16dp"
android:orientation="vertical"
>
<android.support.v7.widget.CardView
android:background="#00000000"
android:layout_width="fill_parent"
android:layout_height="100dp"
android:layout_gravity="center"
android:layout_margin="5dp"
card_view:cardCornerRadius="2dp"
card_view:contentPadding="10dp"
android:id="@+id/cv">
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="0dip">
<TableRow android:padding="5dip">
<ImageView
android:id="@+id/pkicon"
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_margin="3dp"/>
<LinearLayout android:id="@+id/lnlayout"
android:layout_width="50dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:orientation="vertical"
android:layout_margin="3dip">
<TextView
android:id="@+id/pkname"
android:layout_width="wrap_content"
android:layout_height="30dp"
android:textColor="#000000"
android:textSize="20sp"/>
<TextView
android:id="@+id/pknot"
android:layout_width="wrap_content"
android:layout_height="20dp"
android:textColor="#606060"/>
</LinearLayout>
</TableRow>
</TableLayout>
</android.support.v7.widget.CardView>
</LinearLayout>
を含むレイアウトの
断片は、今、私は奇妙な行動に遭遇しています:
カードは正しく表示されますが、タップすると、波紋エフェクトはLinearLayout
要素をカバーし、カードは不透明な背景が不鮮明です。
予想される動作:カードの背後にある背景は白のままです。波紋効果はカード上でのみ発生します。
助けてください。
アイテム内のカードをクリック可能にしたいとします。現在、親ListViewにonItemSelectedListenerが設定されており、アイテムの下にリップルの背景が描画されます。代わりにRecyclerViewを使用したいと思うかもしれません。 RecyclerViewはこの混乱する砂糖を持っていません。クリックリスナーを担当します。 https://developer.android.com/training/material/lists-cards.html –