在向Android按钮添加颜色后,它会失去其涟漪效果,使用户感觉有响应点击。我该如何解决?我已经搜索了很多解决方案,但我找不到一个不明确的明确解决方案。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".ClockInOutFragment">
<AnalogClock
android:id="@+id/clock"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:layout_toRightOf="@+id/date_and_time"/>
<RelativeLayout
android:id="@+id/date_and_time"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="10dp">
<TextView
android:id="@+id/time_digits"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="12:10"
android:textSize="45sp"/>
<TextView
android:id="@+id/am_pm"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/time_digits"
android:layout_toRightOf="@+id/time_digits"
android:paddingLeft="3dp"
android:text="PM"
android:textSize="20sp"/>
<TextView
android:id="@+id/date"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/time_digits"
android:text="Mon, July 11"
android:textSize="22sp"/>
</RelativeLayout>
<!--Clock in and out buttons-->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:orientation="horizontal">
<Button
android:id="@+id/textView3"
android:layout_width="0dp"
android:layout_height="56dp"
android:layout_weight="1"
android:background="#4CAF50"
android:gravity="center"
android:text="Clock In"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textColor="#FFFFFF"/>
<!--Divider between the clock in and out button-->
<View
android:layout_width="1dp"
android:layout_height="match_parent"
android:background="#B6B6B6"/>
<Button
android:id="@+id/textView4"
android:layout_width="0dp"
android:layout_height="56dp"
android:layout_weight="1"
android:background="#FF5252"
android:gravity="center"
android:text="Clock Out"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textColor="#FFFFFF"/>
</LinearLayout>
</RelativeLayout>
答案 0 :(得分:23)
你可以添加涟漪效果&amp;背景颜色与额外的波纹drawable:
你的布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:id="@+id/button_connect"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="20dip"
android:fontFamily="sans-serif"
android:text="Connect"
android:background="@drawable/ripple"
android:textColor="#FFFFFF"
android:textSize="18sp" />
</LinearLayout>
ripple.xml(除了涟漪效果之外,您还可以添加背景颜色):
<?xml version="1.0" encoding="utf-8"?>
<!-- in drawable folder-->
<ripple
xmlns:android="http://schemas.android.com/apk/res/android"
android:color="?android:colorControlHighlight">
<item android:id="@android:id/mask">
<shape android:shape="rectangle">
<solid android:color="?android:colorAccent" />
</shape>
</item>
<item>
<shape android:shape="rectangle">
<!-- put your background color here-->
<solid android:color="@color/default_color" />
</shape>
</item>
</ripple>
答案 1 :(得分:19)
一种非常简单直接的方法是将按钮的?attr/selectableItemBackground
设置为android:foreground
属性。以下xml完全有效且可以正常工作
<Button
android:id="@+id/btn"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@android:color/white"
android:foreground="?attr/selectableItemBackground"/>
答案 2 :(得分:13)
不要更改Button的背景。改变主题。
<style name="ButtonGray">
<item name="colorButtonNormal">@color/gray</item>
</style>
并在您的xml文件中
<Button
android:id="@+id/accept_button"
android:layout_height="wrap_content"
android:layout_width="0dp"
android:layout_weight="1"
android:text="@string/button_accept_group"
android:theme="@style/ButtonGray"/>
或者您可以将其添加到主应用主题
中<style name="AppTheme"
parent="Theme.AppCompat.Light.NoActionBar">
<item name="colorButtonNormal">@color/primary_color</item>
</style>
并且不需要更改按钮背景。
如果您想要完全自定义背景,则需要创建选择器。你可以设置涟漪效应。
答案 3 :(得分:4)
只需使用:
android:backgroundTint="#4CAF50"
而不是:
android:background="#4CAF50"
请勿忘记将Button
更改为android.support.v7.widget.AppCompatButton
答案 4 :(得分:2)
MaterialButton 没有答案,所以我将其放在此处。
对于 MaterialButton (com.google.android.material.button.MaterialButton),请使用“ backgroundTint”和“ rippleColor”。
<com.google.android.material.button.MaterialButton
android:id="@+id/button_sign_in"
android:layout_width="0dp"
android:layout_height="55dp"
app:backgroundTint="@android:color/white"
app:rippleColor="?attr/colorControlHighlight"
?attr/colorControlHighlight
是默认的波纹颜色,您可以更改此值。
答案 5 :(得分:0)
实际上,您可以使用<layer-list>
的可绘制对象来将波纹效果与任何其他可绘制对象结合起来。这也是脂前脂肪检测的通用解决方案:我已经在许多配置中对其进行了测试。
唯一的问题是?selectableItemBackground
出现在<layer-list>
内时,lo-lipop崩溃了,因此我们必须以编程方式创建LayerDrawable。
一个非常快速的简单解决方案如下:
为您的视图指定
android:background="?selectableItemBackground"
然后在代码中的任何地方创建mySpecialDrawable并完成技巧:
Drawable[] layers = {mySpecialDrawable, getBackground()};
setBackgroundDrawable(new LayerDrawable(layers).mutate());
请注意,此处的.mutate()
对于LayeredDrawable是必不可少的!
当您已经拥有自定义视图并且宁愿扩展其功能和兼容性而不是添加额外的空FrameLayout作为父级时,更复杂的解决方案可能会很有用。
在attrs.xml里面放:
<resources>
<declare-styleable name="MyView">
<attr name="selectableBackground" format="reference"/>
<attr name="backgroundDrawable" format="reference"/>
</declare-styleable>
</resources>
然后在您的View-descendant类中:
private Drawable selectableBackground;
private Drawable backgroundDrawable;
public MyView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
try {
TypedArray attributeArray;
attributeArray = context.obtainStyledAttributes(attrs, R.styleable.MyView);
int id = attributeArray.getResourceId(R.styleable.MyView_selectableBackground, -1);
if (id != -1) {
selectableBackground = ResourcesCompat.getDrawable(getResources(), id, context.getTheme());
}
id = attributeArray.getResourceId(R.styleable.MyView_backgroundDrawable, -1);
if (id != -1) {
backgroundDrawable = ResourcesCompat.getDrawable(getResources(), id, context.getTheme());
}
constructBackground();
attributeArray.recycle();
} catch (Exception e) {
Log.e(this.toString(), "Attributes initialization error", e);
throw e;
}
}
void setSelectableBackground(Drawable drawable) {
selectableBackground = drawable;
constructBackground();
}
void setDrawable(Drawable drawable) {
backgroundDrawable = drawable;
constructBackground();
}
private void constructBackground() {
if (selectableBackground != null) {
if (backgroundDrawable != null) {
Drawable[] layers = {backgroundDrawable, selectableBackground};
setBackgroundDrawable(new LayerDrawable(layers).mutate()); // Both, using layers
} else setBackgroundDrawable(selectableBackground); // Selectable only
} else setBackgroundDrawable(backgroundDrawable); // Background only or null
}
我更喜欢这种方法,因为它没有诸如android:foreground
属性之类的问题,该属性为23+或将可点击视图封装在FrameLayout中的额外开销。
答案 6 :(得分:-1)
您应该使用样式
<style parent="Theme.AppCompat.Light" name="RaisedButtonGreen">
<item name="colorButtonNormal">@color/green</item>
<item name="colorControlHighlight">@color/greenLight</item>
<item name="android:textColor">@android:color/white</item>
</style>
这是最佳解决方案
<Button
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="Button with ripple for style"
android:theme="@style/RaisedButtonGreen"/>