diff options
Diffstat (limited to 'app/src')
-rw-r--r-- | app/src/main/res/layout/drawer_main.xml | 37 |
1 files changed, 27 insertions, 10 deletions
diff --git a/app/src/main/res/layout/drawer_main.xml b/app/src/main/res/layout/drawer_main.xml index b2254d2a..e1f7b15c 100644 --- a/app/src/main/res/layout/drawer_main.xml +++ b/app/src/main/res/layout/drawer_main.xml @@ -1,23 +1,40 @@ <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" + xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" android:background="@color/colorBackground" tools:context="se.leap.bitmaskclient.NavigationDrawerFragment"> - <ImageView android:id="@+id/imageView" + <FrameLayout android:layout_width="match_parent" - android:layout_height="wrap_content" - android:background="@drawable/ic_colorsquare" - android:src="@drawable/mask" /> + android:layout_height="wrap_content"> - <ListView android:id="@+id/accountList" + <android.support.v7.widget.AppCompatImageView + android:id="@+id/background" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:adjustViewBounds="false" + android:cropToPadding="false" + android:scaleType="fitStart" + app:srcCompat="@drawable/ic_colorsquare" /> + + <android.support.v7.widget.AppCompatImageView + android:id="@+id/mask" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_centerHorizontal="true" + android:layout_centerInParent="true" + android:layout_centerVertical="true" + app:srcCompat="@drawable/mask" /> + + + </FrameLayout> + + <ListView + android:id="@+id/accountList" android:layout_width="match_parent" - android:layout_height="wrap_content" - android:choiceMode="singleChoice" - android:divider="@android:color/transparent" - android:dividerHeight="0dp"> + android:layout_height="match_parent" /> - </ListView> </LinearLayout>
\ No newline at end of file |