ユーザーのホーム画面の壁紙を Android アプリの背景として設定することはできますか? アプリを電話の一部に見えるようにする非常に興味深い方法になると思います。
1 に答える
0
これをテストすることはできませんが、WindowManagerを使用してから を使用できる場合がありますpublic static final int FLAG_SHOW_WALLPAPER
。
WindowManager ドキュメントから Window flag: ask that the system wallpaper be shown behind your window. The window surface must be translucent to be able to actually see the wallpaper behind it; this flag just ensures that the wallpaper surface will be there if this window actually has translucent regions.
この上でウィンドウ領域を透明に設定すると、問題が解決する場合があります。なかなかのアイデアですね、どうなるか楽しみです。
于 2013-09-17T06:54:17.177 に答える