ボタンの影をより平らに見せるために、ボタンから影を取り除きます。
私は今これを持っています:
しかし、私はこれが欲しい:
もう一つの選択肢は追加することです
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" />
もっと簡単な方法は、このタグをボタンに追加することです。
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に追加:style="@style/Widget.MaterialComponents.Button.UnelevatedButton"
Buttonの代わりに、TextViewを使用してJavaコードにクリックリスナーを追加することができます。
すなわち.
アクティビティレイアウトxmlで、
<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" />
アクティビティJavaファイル内:
TextView btnTextView = (TextView) findViewById(R.id.btn_text_view);
btnTextView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// handler code
}
});
@ Alt-Catの答えが私のために働く!
R.attr.borderlessButtonStyleは影を含みません。
そしてbuttonのドキュメントは素晴らしいです。
また、2番目のコンストラクタで、カスタムボタンにこのスタイルを設定できます。
public CustomButton(Context context, AttributeSet attrs) {
this(context, attrs, R.attr.borderlessButtonStyle);
}
上記のすべての答えは素晴らしいですが、他の選択肢を提案します。
<style name="FlatButtonStyle" parent="Base.Widget.AppCompat.Button">
<item name="Android:stateListAnimator">@null</item>
<!-- more style custom here -->
</style>