Skip to content

Commit

Permalink
Fix theme
Browse files Browse the repository at this point in the history
  • Loading branch information
nikita-yfh committed Mar 25, 2022
1 parent 2c37bcd commit b2fb3f5
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<application
android:icon="@drawable/app_icon"
android:label="@string/app_name">
android:label="@string/app_name"
android:theme="@style/AppTheme">
<activity android:name=".ADBActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
Expand Down
10 changes: 10 additions & 0 deletions app/src/main/res/values/styles.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="ActionBar" parent="@android:style/Widget.DeviceDefault.ActionBar">
<item name="android:background">#202020</item>
</style>
<style name="AppTheme" parent="@android:style/Theme.DeviceDefault">
<item name="android:actionBarStyle">@style/ActionBar</item>
</style>
</resources>

0 comments on commit b2fb3f5

Please sign in to comment.