① android點擊以後改變button的顏色
android點擊以後改變button的顏色的方法為:
1、新建 drawable/button_font_style.xml
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true" android:color="#fff"/>
<item android:state_focused="true" android:color="#fff"/>
<item android:color="#000" />
</selector>
2、添加至需要的xml里即可
<android:textColor="@drawable/button_font_style">
② 請問安卓開發,怎麼實現點擊按鈕改變當前頁面背景顏色(整個layout的顏色)
建議還是用selector,方便。
selector_list_view_item.xml
<?xml version="1.0" encoding="UTF-8"?><selector xmlns:android=""> <!-- 默認顏色 --> <item android:state_pressed="false" android:drawable="@color/white"></item> <!-- 點擊時的顏色 --> <item android:state_pressed="true" android:drawable="@color/light_blue"></item> </selector>
然後ListView的item.xml(你的ListView子項布局文件)文件中的根Layout背景設為selector_list_view_item.xml
<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android=" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="horizontal" android:background="@drawable/selector_list_view_item"> </LinearLayout>
ok,搞定!
其中selector_list_view_item.xml文件中的@color/white和@color/light_blue是在colors.xml中定義的,你想設置什麼顏色都可以。
③ android怎麼改變按鈕顏色
可以用代碼設置替換Button的背景顏色
btn.setBackgroundDrawable(getResources().getDrawable(R.drawable.圖片的路徑));
④ 怎麼Android編程中設置Button的字體顏色呢
<Button
android:text="123"
android:textColor="@color/aliceblue" //設置字體顏色
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
望採納!
⑤ 如何在安卓中為按鈕添加顏色
安卓中為按鈕添加顏色,只需要在xml布局文件中對按鈕控制項設置即可。
只需要設置background屬性
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#ffffff"
/>