オプションメニューには、アプリケーションの背景を変更できる機能があります。これを行うために、ユーザーがギャラリーから画像を選択できるアクティビティを開始します。
問題は、ギャラリーをフルスクリーンモードで表示したいということです。
私のAndroidManifest.xmlには
<application android:icon="@drawable/icon"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
android:label="@string/app_name">
そして、私はギャラリーを介して表示しています
Intent i = new Intent(Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.INTERNAL_CONTENT_URI);
i.setType("image/*");
startActivityForResult(i, PICK_REQUEST);
誰かがこれを行う方法を知っていますか?