Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to set a focus to a button widget which lies somewhere down in my layout. onCreate of the activity my control/focus should be on that button programmatically.

share|improve this question

2 Answers

up vote 39 down vote accepted

Yeah it's possible

Button myBtn=(Button)findViewById(R.id.myButtonId);
myBtn.setFocusableInTouchMode(true);
myBtn.requestFocus();
share|improve this answer
I trying it in onCreate method but its not working. I am creating buttons dynamically and adding the buttons in LinearLayout. Can any one please help me out? – Manoj Kumar Mar 16 '11 at 9:44
3  
it does not worked for me. I have an EditView in my page that always gets focus. – breceivemail Oct 23 '11 at 12:29
3  
It's sad to see this answer getting an absurd number of upvotes when, while nominally "correct", it neglects to mention that it will often be necessary to call the setFocusable(true) and possibly also setFocusableInTouchMode(true) methods of the Button before it will work. While these may be set from xml, they may have to be reset if the button has ever been made non-focusable. – Chris Stratton Jul 15 '12 at 20:38

. . If you have created the Button Dynamically then also you able to do it. . . In that case you have to use the ButtonObject.requestFocus(); Where ButtonObject is the name of the button Object as like myBtn in the Pentium answer. . Enjoy.

share|improve this answer
without creating the button programatically Button myBtn=(Button)findViewById(R.id.myButtonId); myBtn.requestFocus();, if i could down vote i would. – Shereef Oct 30 '11 at 9:02
I am not getting you properly. – user644458 Nov 15 '11 at 11:00
You can control buttons made in the XML why are you misleading the asker – Shereef Nov 15 '11 at 15:19
"If you have created the Button Dynamically then also you able to do it", this statement is misleading, you say if you created it dynamically, this is not true, wither dynamically or by XML the coder can get the instance of that widget and control it in the same thread that used setContentView(R.layout.bla); – Shereef Nov 20 '11 at 8:02
Simply a Wrong answer – Mitch Apr 18 '12 at 15:11
show 1 more comment

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.