我有一个prefs xml活动,其中包含一个用于打开和关闭声音的复选框,以及一个用于输入他/她姓名的编辑框。有没有办法让prefs活动全屏并设置背景?如果有可能的话,我想设置自己的png背景。感谢。
答案 0 :(得分:3)
使用主题并在android:theme="@style/CustomTheme"
中设置<activity>
使用以下项目在styles.xml中创建CustomTheme
<style name="CustomTheme">
<item name="android:windowBackground">@drawable/backgroundimage</item>
<item name="android:windowFullscreen">true</item>
</style>
答案 1 :(得分:2)
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/backgroundimage"
android:gravity="center_horizontal"
android:orientation="vertical" >
这里'backgroundimage'是来自你的res的图像。
在oncreate() -
requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN)
答案 2 :(得分:0)
我的pref.xml文件:
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" >
<EditTextPreference
android:title="Ime"
android:key="ime"
android:summary="Upišite svoje ime">
</EditTextPreference>
<CheckBoxPreference
android:title="Zvuk"
android:defaultValue="true"
android:key="checkbox"
android:summary="Ukljucite ili iskljucite zvukove u igri"/>
</PreferenceScreen>