vote up 0 vote down star

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.

flag

80% accept rate

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.