up vote 0 down vote favorite
share [g+] share [fb]

I have a layout that looks like this (some attributes removed for brevity)

<RelativeLayout>
    <ImageButton 
         android:id="@+id/button"
         android:nextFocusRight="@+id/gridview"/>
    <GridView 
         android:id="@+id/gridview" />
</RelativeLayout>

When I navigate using the DPAD from the button to the gridview, the OnItemSelectedListener is not fired. However a new layout pass is perform. Why is this ? Is this an android bug & my bug ? Thanks

P.S I am running this in the emulator.

link|improve this question

77% accept rate
feedback

1 Answer

just go thru the following link

http://developer.android.com/guide/topics/manifest/uses-configuration-element.html

hope it helps you

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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