我在卡片中设置了按钮属性clickable="false"
,该卡片具有属性clickable=true
和android:foreground="?android:attr/selectableItemBackground"
,但是当我点击卡片时,该按钮也会显示涟漪效果。这是我的代码:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:layout_marginTop="8dp">
<android.support.v7.widget.CardView
android:id="@+id/payment_card_view"
android:layout_width="0dp"
android:layout_height="200dp"
android:layout_weight="1"
android:layout_gravity="center_horizontal"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
android:layout_marginStart="8dp"
android:layout_marginEnd="8dp"
android:layout_marginBottom="8dp"
card_view:cardCornerRadius="2dp"
card_view:cardElevation="2dp"
card_view:cardBackgroundColor="#fff"
android:clickable="true"
android:foreground="?android:attr/selectableItemBackground">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:padding="4dp">
<Button
android:id="@+id/monthlySubscriptionPayButton"
style="?android:attr/borderlessButtonStyle"
android:layout_width="wrap_content"
android:layout_height="48dp"
android:text="@string/payment_pay_text"
android:textAllCaps="true"
android:textColor="@color/junkart_color"
android:textSize="14sp"
android:clickable="false"/>
</LinearLayout>
</LinearLayout>
</android.support.v7.widget.CardView>
</LinearLayout>
谢谢!
答案 0 :(得分:1)
在CardView中的LinearLayout中设置clickable="true"
和foreground="?android:attr/selectableItemBackground"
值,您的问题就会得到解决。
请参阅以下更改:我在您的代码中做了
<android.support.v7.widget.CardView
android:id="@+id/payment_card_view"
android:layout_width="0dp"
android:layout_height="200dp"
android:layout_weight="1"
android:layout_gravity="center_horizontal"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
android:layout_marginStart="8dp"
android:layout_marginEnd="8dp"
android:layout_marginBottom="8dp"
card_view:cardCornerRadius="2dp"
card_view:cardElevation="2dp"
card_view:cardBackgroundColor="#fff">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:clickable="true"
android:foreground="?android:attr/selectableItemBackground">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:padding="4dp">
<Button
android:id="@+id/monthlySubscriptionPayButton"
style="?android:attr/borderlessButtonStyle"
android:layout_width="wrap_content"
android:layout_height="48dp"
android:text="@string/payment_pay_text"
android:textAllCaps="true"
android:textColor="@color/junkart_color"
android:textSize="14sp"
android:clickable="false"/>
</LinearLayout>
</LinearLayout>
</android.support.v7.widget.CardView>
希望对你有所帮助。让我知道它是否已经解决。
答案 1 :(得分:0)
在CardView上将clickable属性设置为false。如果父视图是可单击的,则无论子视图是否可单击,绘制状态更改事件都会调度到子视图。
答案 2 :(得分:0)
一种解决方案可能是将该按钮设置为不可单击旁边的禁用(setEnabled(false)
)。尽管如果禁用按钮的样式不同,这可能不是一个选择。