App settings statusbar fix

This commit is contained in:
Dominik Schürmann 2015-02-03 16:10:54 +01:00
parent 7914aa5c08
commit b77bbb6027
2 changed files with 8 additions and 3 deletions

View File

@ -13,8 +13,6 @@
android:layout_width="match_parent"
android:layout_height="match_parent">
<include layout="@layout/notify_area" />
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">

View File

@ -15,12 +15,19 @@
android:background="?attr/colorPrimaryDark"
android:orientation="horizontal">
<ImageView
android:id="@+id/statusBar"
android:layout_width="match_parent"
android:layout_height="@dimen/statusMargin"
android:background="?attr/colorPrimary" />
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_below="@+id/statusBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="?attr/actionBarSize"
android:background="?attr/colorPrimaryDark"
android:background="?attr/colorPrimary"
android:overScrollMode="always"
app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"