这是代码:
<?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>
我想创建全屏画廊......
答案 0 :(得分:0)
将 @android:style / Theme.Black.NoTitleBar.Fullscreen 设置为AndroidManifest.xml文件中的活动声明,以获取FullScreen视图。
例如:
<activity android:name=".YourActivity"
android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen" />