2017-07-18 19 views
0

ListViewCardViewで実装しましたが、いくつかのオンラインチュートリアルに続いています。このスクリーンショットで見られるように、ユーザは、カードをタップしたときに、リスト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> 

を含むレイアウトの

断片は、今、私は奇妙な行動に遭遇しています:

enter image description here

カードは正しく表示されますが、タップすると、波紋エフェクトはLinearLayout要素をカバーし、カードは不透明な背景が不鮮明です。

予想される動作:カードの背後にある背景は白のままです。波紋効果はカード上でのみ発生します。

助けてください。

+0

アイテム内のカードをクリック可能にしたいとします。現在、親ListViewにonItemSelectedListenerが設定されており、アイテムの下にリップルの背景が描画されます。代わりにRecyclerViewを使用したいと思うかもしれません。 RecyclerViewはこの混乱する砂糖を持っていません。クリックリスナーを担当します。 https://developer.android.com/training/material/lists-cards.html –

答えて

0

たぶんCHANGIN LinearLayoutwidthheightwrap_contentにあなたの親ビューは、それが使用上の理由リップルが作成されているのですリニアレイアウトであるため、これが起こっている

<LinearLayout 
xmlns:android="http://schemas.android.com/apk/res/android" 
xmlns:card_view="http://schemas.android.com/apk/res-auto" 
android:layout_width="wrap_content" 
android:layout_height="wrap_content" 
android:padding="16dp" 
android:orientation="vertical"> 
+0

残念ながら、うまくいかなかった。 –

1

問題を解決することがあり

app:cardBackgroundColor="?selectableItemBackground" 

または

android:background="?selectableItemBackground" 
cardviewレイアウトで

または

android:foreground="?selectableItemBackground" 

、あなたがいない親IEでこのcardviewレイアウトにリスナーをクリックしてください設定。 LinearLayout。

+0

背景のヒントが機能しませんでした。カードにリスナーを設定するにはどうすればよいですか?現時点では、リスト全体にリスナー 'setOnItemClickListener'があります。 –

+0

カスタムアダプターを使用していれば、クリックリスナーhttps://stackoverflow.com/a/12596403/5492047とこれを設定する方法はこちらですhttp://androidforbeginners.blogspot.in/2010/03/clicking- buttons-in-listview-row.htmlが動作しない場合は、私に知らせてください。 –

+0

ありがとう!これは役に立ちます。 –