I have some Buttons
on my android app. They have an icon and text. I can set the background color of a Button
in java code. If the button is clicked I want to display with a different color. So, how do I set a different color for the pressed state of the Button
?
<Button
android:id="@+id/save"
android:layout_width="130dip"
android:layout_height="wrap_content"
android:scaleType="center"
android:drawableTop="@drawable/save"
android:text="Save"
android:textColor="#FFFFFF"
android:textSize="14dip"
>
The onCreate
method:
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.homescreen);
save = (Button)findViewById(R.id.save);
save.setBackgroundColor(Color.rgb(27,161,226)); }
Use a StateList. Below is an example of a selector with a different drawable for the pressed state:
You need to use a drawable with selector for pressed states, more commonly done in xml links below.
http://developer.android.com/reference/android/graphics/drawable/StateListDrawable.html
http://developer.android.com/guide/topics/resources/drawable-resource.html#StateList
create xml file using the button image like this with mybutton.xml in drawable folder
and use this in button xml code
add those color codes in the resource-->values-->colors.xml like this
Reference : Change button background on touch
edittext_modified_states.xml
here: http://android-holo-colors.com goto this website and select your color and imort into your drawable. goto layout xml and set button background. android:background="@drawable/edittext_modified_states"
Below is the sample code for color state list used for a button
Also please check below link for color state list
http://developer.android.com/guide/topics/resources/color-list-resource.html
If you want to change button background color then just do as follow..
just add this code in onclick event of button.