forked from cgutman/USBIPServerForAndroid
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
32 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<resources> | ||
|
||
<!-- | ||
Base application theme for API 21+. This theme completely replaces | ||
AppBaseTheme from BOTH res/values/styles.xml and | ||
res/values-v21/styles.xml on API 21+ devices. | ||
--> | ||
<style name="AppBaseTheme" parent="android:Theme.Material"> | ||
<!-- API 21 theme customizations can go here. --> | ||
<item name="android:statusBarColor">#212121</item> | ||
<item name="android:navigationBarColor">#212121</item> | ||
</style> | ||
|
||
</resources> |
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,12 @@ | ||
<resources> | ||
|
||
<!-- | ||
Use a black background to avoid the transparent background when switching apps. | ||
android:windowBackgroundFallback is supposed to do this, but it wasn't working for | ||
me as of Android 7.1 | ||
--> | ||
<style name="StreamBaseTheme" parent="AppBaseTheme"> | ||
<item name="android:windowBackground">@android:color/black</item> | ||
</style> | ||
|
||
</resources> |
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,6 @@ | ||
<resources> | ||
<style name="AppBaseTheme" parent="android:Theme.Material"> | ||
<item name="android:navigationBarColor">@android:color/transparent</item> | ||
<item name="android:statusBarColor">@android:color/transparent</item> | ||
</style> | ||
</resources> |