ロリポップ以前のデバイスでは、カードビューを押すと、醜い灰色の長方形が表示されるので、カードの影なしでカードコンテンツのみに色を設定するにはどうすればよいですか?
ここに私のcardView XMLがあります
<android.support.v7.widget.CardView
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:id="@+id/card"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"
card_view:contentPadding="50dp"
card_view:cardElevation="5dp"
android:clickable="true"
android:foreground="?android:attr/selectableItemBackground">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world" />
</android.support.v7.widget.CardView>
ありがとう!