我已經在xml中定義了我的按鈕。Android灰色的按鈕編程的設置爲XML中的backgroundTint?
<Button
android:id="@+id/button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:visibility="visible"
android:text="@string/button_node"
android:textColor="@android:color/white"
android:backgroundTint="@color/colorAccent" />
我需要灰色代碼中的此按鈕。我用下面的代碼行來改變它。
button.setBackgroundResource(R.drawable.button_grey);
button.setEnabled(false);
button.setClickable(false)
我button_grey.xml文件
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="rectangle">
<gradient
android:angle="90"
android:endColor="@color/colorGray"
android:startColor="@color/colorGray" />
<corners android:radius="4dp" />
</shape>
</item>
<item
android:bottom="2dp"
android:left="1.5dp"
android:right="0.5dp"
android:top="0dp">
<shape android:shape="rectangle">
<solid android:color="@color/cardview_shadow_start_color" />
<corners android:radius="4dp" />
</shape>
</item>
</layer-list>
,但實際上我需要的按鈕,可以像下面通過改變顏色爲灰色。 請注意: - 它應該從API級別18開始工作。
難道你剛纔設置的按鈕,背景爲灰色在你的代碼?如果您希望該按鈕爲藍色,並帶有陰影,則可以將背景設置爲藍色並將其設爲海拔。 – Rachit
海拔要求最低API級別21 – somia
http://stackoverflow.com/a/30931750/3286614使用此設置海拔低於級別21. – Rachit