サウンドのオンとオフを切り替えるための1つのチェックボックスと、ユーザーが自分の名前を入力するための編集ボックスを備えたprefsxmlアクティビティがあります。設定アクティビティをフルスクリーンにして背景を設定する方法はありますか?可能であれば、独自のpng背景を設定したいと思います。ありがとう。
質問する
63 次
3 に答える
3
テーマを使用して、
styles.xmlのCreateaに次の項目を設定android:theme="@style/CustomTheme"
します<activity>
CustomTheme
<style name="CustomTheme">
<item name="android:windowBackground">@drawable/backgroundimage</item>
<item name="android:windowFullscreen">true</item>
</style>
于 2013-03-07T00:29:36.850 に答える
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」は解像度からの画像です。
oncreate()で-
requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN)
于 2013-03-07T00:11:11.260 に答える
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>
于 2013-03-07T02:23:04.870 に答える