-
Notifications
You must be signed in to change notification settings - Fork 245
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: nobunobuta <[email protected]>
- Loading branch information
1 parent
4f1876c
commit da2014c
Showing
2 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
|
||
<resources> | ||
<!-- Default theme for windows that want to have the user's selected | ||
wallpaper appear behind them. --> | ||
<style name="Theme.Wallpaper" parent="android:Theme"> | ||
<item name="android:windowBackground">@android:color/transparent</item> | ||
<!-- | ||
<item name="android:colorBackgroundCacheHint">@null</item> | ||
<item name="android:windowShowWallpaper">true</item> | ||
--> | ||
</style> | ||
|
||
<!-- Variant of the translucent theme with no title bar --> | ||
<style name="Theme.Wallpaper.NoTitleBar"> | ||
<item name="android:windowNoTitle">true</item> | ||
</style> | ||
|
||
<!-- Variant of the translucent theme that has no title bar and | ||
fills the entire screen --> | ||
<style name="Theme.Wallpaper.NoTitleBar.Fullscreen"> | ||
<item name="android:windowFullscreen">true</item> | ||
<item name="android:windowContentOverlay">@null</item> | ||
</style> | ||
</resources> | ||
|