mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-13 17:51:57 +00:00
Fixes #98 - must supply a layout_width attribute error.
This commit is contained in:
parent
a1581cc842
commit
506bc22a64
2 changed files with 7 additions and 1 deletions
|
|
@ -34,7 +34,7 @@
|
|||
</activity>
|
||||
<activity
|
||||
android:name=".prefs.PrefsActivity"
|
||||
android:theme="@style/AppThemeWithActionBar"
|
||||
android:theme="@style/PreferencesTheme"
|
||||
android:parentActivityName=".MainActivity"
|
||||
android:label="@string/PS_settings_title">
|
||||
<intent-filter>
|
||||
|
|
|
|||
|
|
@ -47,6 +47,12 @@
|
|||
|
||||
</style>
|
||||
|
||||
<style name="PreferencesTheme" parent="AppThemeWithActionBar">
|
||||
<item name="android:windowContentOverlay">@null</item>
|
||||
<item name="android:layout_width">match_parent</item>
|
||||
<item name="android:layout_height">wrap_content</item>
|
||||
</style>
|
||||
|
||||
<style name="AppThemeWithActionBarBlackText" parent="AppThemeWithActionBar">
|
||||
<item name="android:textColorPrimary">@android:color/black</item>
|
||||
</style>
|
||||
|
|
|
|||
Loading…
Reference in a new issue