Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i want to change the green background of a button when this is touched without using OnTouchListener. i have this situation: i put some butons in a layer, then the layer in another layer, and the last layer in onother layer. when i touch the button the background is changing(i m using OnTouchListener right now) but if i drag the finger outside of the button and then get it out of the screen the background of the button remains the image from the state when it s touch(otherwise if i click the button and the the finnger off the button it is k the background is changing)

share|improve this question
if u r not using xml show ur code , i will make it clear.. – RajaReddy PolamReddy Nov 15 '11 at 7:56

2 Answers

create xml file using the button image like this with mybutton.xml in drawable folder

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item 
  android:state_pressed="true" 
  android:drawable="@drawable/greencolorbutton" />
<item 
  android:drawable="@drawable/closebutton" />
</selector>

and use this in button xml code

android:background:@drawable/mybutton
share|improve this answer
thanks. can u please provide me the code example(i m not using xml in creating my gui) – moctavianro Nov 15 '11 at 7:40
i did't get you. – RajaReddy PolamReddy Nov 15 '11 at 7:43
@user1021692: he meant,you should use this xml file in your button tag.please see the edit of this answer – Hiral Nov 15 '11 at 7:52
i ve seen the xml is k what is there but i want a code example not an xml example – moctavianro Nov 15 '11 at 9:34
is this solved your problem , if yes please accept the answer. – RajaReddy PolamReddy Nov 24 '11 at 10:54

The selector will be as below

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_pressed="true" android:drawable="@drawable/btn_pressed" /> <!-- pressed -->
    <item android:state_focused="true" android:drawable="@drawable/btn_focused" /> <!-- focused -->
    <item android:drawable="@drawable/btn_default" /> <!-- default -->
</selector>
share|improve this answer
1  
please provide me a code example not an xml one – moctavianro Nov 15 '11 at 9:35

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.