1. ホーム
  2. アンドロイド

[解決済み】ボタンの影を消す方法(android)

2022-04-13 04:06:25

質問

ボタンの影を消して、フラットな印象にしたい。

今、こんなのがあります。

でも、これが欲しいんです。

解決方法は?

別の方法として

style="?android:attr/borderlessButtonStyle"

をButton 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" />