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 have a GridView that is populated by a layout containing an ImageView and an EditText.

When the activity is opened, is there a simple way to set the focus to the first EditText and pop open the keyboard?

share|improve this question

1 Answer

After you create the view and set the content do the following

setContentView(R.Layout.main);
EditText edit = (EditText) findViewById(R.id.editText01);
edit.requestFocus();

That should do it.

EDIT: After rereading your post I realize you might be trying to access the item on the grid view in which case the above will not work. Try this instead

GridView myGridView = (GridView) findViewById(R.id.gridview);
ViewGroup griditem = (ViewGroup) myGridView.getChildAt(0); //First item
for(int i = 0; i < griditem.getChildCount(); ++i) {
    if(griditem.getChildAt(i) instaceof TextView)
        griditem.getChildAt(i).requestFocus();
}
share|improve this answer
The gridview contains several instances of the layout that contains the EditText. The EditText lies in a different layout than the main layout of the activity. Reread my question. How do I specifically obtain the first EditText (within the GridView) ? – Allen Feb 20 '12 at 20:41
Ive updated my post with a fix that should work for what you need. – OriginalMoose Feb 20 '12 at 23:58
I get a nullPointerException on the for statement's line – Allen Feb 21 '12 at 1:19

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.