如何在Android布局中创建全屏可滚动图库?

时间:2012-03-15 00:06:10

标签: android layout gallery fullscreen scrollable

这是代码:

<?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 :(得分:0)

@android:style / Theme.Black.NoTitleBar.Fullscreen 设置为AndroidManifest.xml文件中的活动声明,以获取FullScreen视图。

例如:

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