无法使用 TabLayout 对 RelativeLayout 中的 ImageButton 产生连锁反应
Can't get ripple effect on ImageButton in RelativeLayout with TabLayout
ImageButton 在其他布局中有效,但对于 TabLayout 无效。我试图用 CardView 覆盖我的按钮,但它没有帮助。
<RelativeLayout
android:id="@+id/rl_tab_container"
android:layout_width="match_parent"
android:layout_height="@dimen/standard_bar_height"
>
<android.support.design.widget.TabLayout
android:id="@+id/tabs_dict"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:tabGravity="center"
app:tabSelectedTextColor="@color/colorBlack87"
app:tabTextColor="@color/colorBlack54"
app:tabIndicatorColor="@color/colorBlack87"
android:background="@color/colorPrimary"
/>
<ImageButton
android:id="@+id/button_delete_all_curr_dict"
android:layout_width="48dp"
android:layout_height="48dp"
android:src="@drawable/ic_delete"
android:layout_alignParentEnd="true"
android:layout_centerVertical="true"
android:layout_marginEnd="8dp"
android:background="?attr/selectableItemBackgroundBorderless"
/>
</RelativeLayout>
在您的 ImageButton 上试试这个
android:clickable="true"
android:foreground="?attr/selectableItemBackground"
ImageButton 在其他布局中有效,但对于 TabLayout 无效。我试图用 CardView 覆盖我的按钮,但它没有帮助。
<RelativeLayout
android:id="@+id/rl_tab_container"
android:layout_width="match_parent"
android:layout_height="@dimen/standard_bar_height"
>
<android.support.design.widget.TabLayout
android:id="@+id/tabs_dict"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:tabGravity="center"
app:tabSelectedTextColor="@color/colorBlack87"
app:tabTextColor="@color/colorBlack54"
app:tabIndicatorColor="@color/colorBlack87"
android:background="@color/colorPrimary"
/>
<ImageButton
android:id="@+id/button_delete_all_curr_dict"
android:layout_width="48dp"
android:layout_height="48dp"
android:src="@drawable/ic_delete"
android:layout_alignParentEnd="true"
android:layout_centerVertical="true"
android:layout_marginEnd="8dp"
android:background="?attr/selectableItemBackgroundBorderless"
/>
</RelativeLayout>
在您的 ImageButton 上试试这个
android:clickable="true"
android:foreground="?attr/selectableItemBackground"