How do I implement a fullscreen gallery? i.e. image stretches to fill all the screen?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

To make it fullscreen:

        <activity android:name="YourActivity" 
        android:theme="@android:style/Theme.NoTitleBar.Fullscreen">

To make the images fill the screen you should do it on your adapter, creating a View with MATCH_PARENT x MATCH_PARENT and in your ImageView you created on getView you should make it fill all the space:

yourImageView.setScaleType(ImageView.ScaleType.FIT_XY);
link|improve this answer
Would it act like regular gallery widget? I mean image scrolling. – Mighter Mar 15 '11 at 16:20
Yes it will, your adapter should be responsible only to give the data to the Gallery, in case the images. The Gallery will be responsible to scroll the images. – Marcos Vasconcelos Mar 15 '11 at 16:39
And how do I create View with MATCH_PARENT x MATCH_PARENT? – Mighter Mar 16 '11 at 13:20
2  
yourImageView.setLayoutParams(new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT)); – Marcos Vasconcelos Mar 16 '11 at 13:54
feedback

Use this in Activity Manifest.xml

give property like this

 android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"

Thanks.

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.