gpt4 book ai didi

android - ConstraintLayout 中的 selectableItemBackgroundBorderless 问题

转载 作者:行者123 更新时间:2023-12-03 19:48:03 24 4
gpt4 key购买 nike

selectableItemBackgroundBorderless如果 ImageButton 或 Button 放在 View 内,则不起作用有背景,但 selectableItemBackground仍然有效。
xml:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/colorAccent">

<View
android:id="@+id/view"
android:layout_width="match_parent"
android:layout_height="250dp"
android:background="@color/colorPrimary"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
android:visibility="visible"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="1.0" />


<android.support.v7.widget.AppCompatImageButton
android:id="@+id/previous_ib"
android:layout_width="42dp"
android:layout_height="42dp"
android:layout_marginBottom="8dp"
android:layout_marginEnd="32dp"
android:layout_marginTop="8dp"
android:background="?selectableItemBackgroundBorderless"
android:contentDescription="@string/app_name"
android:scaleType="centerInside"
android:src="@drawable/ic_action_previous"
app:layout_constraintBottom_toBottomOf="@+id/play_ib"
app:layout_constraintEnd_toStartOf="@+id/play_ib"
app:layout_constraintTop_toTopOf="@+id/play_ib" />


<android.support.v7.widget.AppCompatImageButton
android:id="@+id/play_ib"
android:layout_width="68dp"
android:layout_height="68dp"
android:layout_marginBottom="8dp"
android:layout_marginEnd="8dp"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:background="?selectableItemBackgroundBorderless"
android:contentDescription="@string/app_name"
android:scaleType="centerInside"
android:src="@drawable/ic_action_play"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="@+id/view" />


<android.support.v7.widget.AppCompatImageButton
android:id="@+id/next_ib"
android:layout_width="42dp"
android:layout_height="42dp"
android:layout_marginBottom="8dp"
android:layout_marginStart="32dp"
android:layout_marginTop="8dp"
android:background="?selectableItemBackgroundBorderless"
android:contentDescription="@string/app_name"
android:scaleType="centerInside"
android:src="@drawable/ic_action_next"
app:layout_constraintBottom_toBottomOf="@+id/play_ib"
app:layout_constraintStart_toEndOf="@+id/play_ib"
app:layout_constraintTop_toTopOf="@+id/play_ib" />

</android.support.constraint.ConstraintLayout>
这就是我想要做的。但涟漪效应消失了。
selectableItemBackgroundBorderless  not working in ConstraintLayout

最佳答案

在此问题得到解决之前,一种解决方案是使用android:background="?actionBarItemBackground"产生圆形波纹效果
并且也适用于约束布局。

关于android - ConstraintLayout 中的 selectableItemBackgroundBorderless 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50074630/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com