Как создать полноэкранную прокручиваемую галерею в макете Android? - PullRequest
0 голосов
/ 15 марта 2012

Это код:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
   android:orientation="horizontal"
   android:layout_width="fill_parent"
   android:layout_height="fill_parent">
   <Gallery
       android:id="@+id/gallery"
       android:layout_width="fill_parent"
       android:layout_height="wrap_content"
       android:gravity="center"
       android:spacing="5dp"
       android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen" />
</LinearLayout>

Я хочу создать полноэкранную галерею ...

1 Ответ

0 голосов
/ 15 марта 2012

установите @ android: style / Theme.Black.NoTitleBar.Fullscreen в объявлении активности в файле AndroidManifest.xml для получения полноэкранного представления.

Например:

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