diff options
author | Christian Schneppe <christian@pix-art.de> | 2018-03-29 22:36:59 +0200 |
---|---|---|
committer | Christian Schneppe <christian@pix-art.de> | 2018-03-29 22:36:59 +0200 |
commit | 2868db3c0f611b0d154206cf7c425effad9e4f50 (patch) | |
tree | 1afa8e6f90bab02f1fc24dd203ea5ca6ba2d414c /src/main/res/layout/fragment_conversations_overview.xml | |
parent | e9263bf79976ac50626ee5f196a1602d8dd4d953 (diff) |
change font size in conversation overview
Diffstat (limited to 'src/main/res/layout/fragment_conversations_overview.xml')
-rw-r--r-- | src/main/res/layout/fragment_conversations_overview.xml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/main/res/layout/fragment_conversations_overview.xml b/src/main/res/layout/fragment_conversations_overview.xml index e400e291d..1f3d9e4e2 100644 --- a/src/main/res/layout/fragment_conversations_overview.xml +++ b/src/main/res/layout/fragment_conversations_overview.xml @@ -1,17 +1,18 @@ <layout xmlns:android="http://schemas.android.com/apk/res/android"> <FrameLayout - android:background="?attr/color_background_primary" android:layout_width="match_parent" - android:layout_height="match_parent"> + android:layout_height="match_parent" + android:background="?attr/color_background_primary"> <ListView android:id="@+id/list" android:layout_width="fill_parent" android:layout_height="wrap_content" android:background="@color/grey50" - android:divider="@color/black12" - android:dividerHeight="1dp" /> + android:divider="@android:color/transparent" + android:dividerHeight="0dp" /> + <android.support.design.widget.FloatingActionButton android:id="@+id/fab" |