玉树临风的楼梯 · input type=“submit“ ...· 3 周前 · |
沉稳的饭卡 · 使用jquery.PrintArea.js打 ...· 3 周前 · |
爱逃课的墨镜 · 在qwidget中放置了一个qpushbut ...· 3 周前 · |
年轻有为的茄子 · 《深入浅出WPF》学习总结之控件与布局 - ...· 1 周前 · |
斯文的电影票 · 命令错误127-腾讯云开发者社区-腾讯云· 11 月前 · |
强健的皮带 · 说说编码与转义的区别 - i江湖中人 - 博客园· 1 年前 · |
重情义的弓箭 · 使用 JavaScript 上传 PDF ...· 1 年前 · |
犯傻的手链 · pyspark系列教程-增加、修改列 - 知乎· 1 年前 · |
我使用此样式来更改
Button
的背景色
<style name="AccentButton" parent="Widget.AppCompat.Button.Colored">
<item name="colorButtonNormal">@color/colorAccent</item>
<item name="android:textColor">@color/white</item>
</style>
在布局中:
<Button
android:id="@+id/login_button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/fragment_login_login_button"
app:theme="@style/AccentButton"/>
它起作用了。但是当我在这个
Button
上调用
setEnabled(false)
时,它保持相同的颜色。我该如何处理此案例?
您应该使用带有选择器的背景,而不是对按钮使用颜色。以下是演示代码
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_enabled="true">
<shape android:shape="rectangle">
<solid android:color="@color/yourEnabledColor" />
</shape>
</item>
<item android:state_enabled="false">
<shape android:shape="rectangle">
<solid android:color="@color/yourDisabledColor" />
</shape>
</item>
</selector>
您没有正确使用
Widget.AppCompat.Button.Colored
样式。您正在使用父样式(
Widget.AppCompat.Button.Colored
),但将其应用为主题。这实际上意味着
Widget.AppCompat.Button.Colored
部件将被完全忽略,而您只需更改按钮的默认颜色(可以工作,但不能处理禁用的情况)。
相反,您应该使用
ThemeOverlay
并单独应用
Colored
样式:
<style name="AccentButton" parent="ThemeOverlay.AppCompat.Dark">
<!-- customize colorButtonNormal for the disable color -->
<!-- customize colorAccent for the enabled color -->
</style>
<Button
android:id="@+id/login_button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/fragment_login_login_button"
android:theme="@style/AccentButton"
style="@style/Widget.AppCompat.Button.Colored"/>
如
this answer on using the
Widget.AppCompat.Button.Colored
style
中所述,禁用的颜色由
colorButtonNormal
控制,启用的颜色由
colorAccent
控制。通过使用
ThemeOverlay.AppCompat.Dark
,
textColor
会自动更改为深色,这意味着您可能根本不需要自定义
ThemeOverlay
。
将接受的解决方案与自定义小部件相结合,我们可以通过设置alpha来显示禁用的按钮。这应该适用于任何按钮和文本颜色组合:
public class ButtonWidget extends AppCompatButton {
public ButtonWidget(Context context) {
super(context);
public ButtonWidget(Context context, AttributeSet attrs) {
super(context, attrs);
public ButtonWidget(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
@Override
public void setEnabled(boolean enabled) {
setAlpha(enabled ? 1 : 0.5f);
super.setEnabled(enabled);
}
目前,我对Android API 15+的设置如下。
/res/color/btn_text_color.xml
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:color="#42000000" android:state_enabled="false" />
<item android:color="#ffffff" />
</selector>
/res/values/styles.xml
<style name="ColoredButton" parent="Widget.AppCompat.Button.Colored">
<item name="android:textColor">@color/btn_text_color</item>
</style>
和
<Button
android:id="@+id/button"
style="@style/ColoredButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="button" />
完整的解决方案由 ianhanniballake ‘answer and Joe Bowbeer ’comment扩展而来:
/res/values/styles.xml
<style name="AccentButton" parent="ThemeOverlay.AppCompat.Dark">
<!-- customize colorAccent for the enabled color -->
<!-- customize colorControlHighlight for the enabled/pressed color -->
<!-- customize colorButtonNormal for the disabled color -->
<item name="android:buttonStyle">@style/Widget.AppCompat.Button.Colored</item>
</style>
无论你在哪里使用这个按钮:
<Button
android:id="@+id/login_button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/fragment_login_login_button"
android:theme="@style/AccentButton"/>
这对我来说真的很好
Kotlin实现了@meanman上面的答案,调整alpha是到目前为止最简单的方法,我所有的触摸涟漪效果仍然像以前一样工作:
import android.content.Context
import android.support.v7.widget.AppCompatButton
import android.util.AttributeSet
class FadedDisableButton : AppCompatButton {
constructor(context: Context) : super(context)
constructor(context: Context, attrs: AttributeSet) : super(context, attrs)
constructor(context: Context, attrs: AttributeSet, defStyleAttr: Int) : super(context, attrs, defStyleAttr)
override fun setEnabled(enabled: Boolean) {
alpha = when {
斯文的电影票 · 命令错误127-腾讯云开发者社区-腾讯云 11 月前 |
强健的皮带 · 说说编码与转义的区别 - i江湖中人 - 博客园 1 年前 |
犯傻的手链 · pyspark系列教程-增加、修改列 - 知乎 1 年前 |