我想从按钮上移除阴影,使其看起来更平坦。
我现在有这个:
但我想要这个:
另一种选择是添加
style="?android:attr/borderlessButtonStyle"
这里记录的按钮xml http://developer.android.com/guide/topics/ui/controls/button.html
一个例子是
<Button
android:id="@+id/button_send"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button_send"
android:onClick="sendMessage"
style="?android:attr/borderlessButtonStyle" />
以上所有答案都很棒,但我会建议另一种选择:
TextView btnTextView = (TextView) findViewById(R.id.btn_text_view);
btnTextView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// handler code
}
});
<style name="FlatButtonStyle" parent="Base.Widget.AppCompat.Button">
<item name="android:stateListAnimator">@null</item>
<!-- more style custom here -->
</style>
将此添加到您的活动中也可以帮助您。
一个更简单的方法是将此标记添加到按钮:
android:stateListAnimator="@null"
虽然它需要API等级21或更高..
我使用自定义样式
<style name="MyButtonStyle" parent="@style/Widget.AppCompat.Button.Borderless"></style>
Java的
setStateListAnimator(null);
XML
android:stateListAnimator="@null"
尝试:android:stateListAnimator="@null"
使用它作为按钮的背景可能有所帮助,可根据需要更改颜色
<?xml version="1.0" encoding="utf-8" ?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true" >
<shape android:shape="rectangle">
<solid android:color="@color/app_theme_light" />
<padding
android:left="8dp"
android:top="4dp"
android:right="8dp"
android:bottom="4dp" />
</shape>
</item>
<item>
<shape android:shape="rectangle">
<solid android:color="@color/app_theme_dark" />
<padding
android:left="8dp"
android:top="4dp"
android:right="8dp"
android:bottom="4dp" />
</shape>
</item>
</selector>
材质设计按钮添加到按钮xml:qazxsw poi
@ Alt-Cat的回答对我有用!
R.attr.borderlessButtonStyle不包含阴影。
按钮的文件很棒。
此外,您可以在第二个构造函数中的自定义按钮上设置此样式。
style="@style/Widget.MaterialComponents.Button.UnelevatedButton"
您可以使用TextView并在Java代码中添加单击侦听器,而不是Button。
即
在活动布局xml中:
public CustomButton(Context context, AttributeSet attrs) {
this(context, attrs, R.attr.borderlessButtonStyle);
}
在活动java文件中:
<TextView
android:id="@+id/btn_text_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/colorPrimaryDark"
android:text="@string/btn_text"
android:gravity="center"
android:textColor="@color/colorAccent"
android:fontFamily="sans-serif-medium"
android:textAllCaps="true" />