diff options
author | Daniel Gultsch <daniel@gultsch.de> | 2016-01-12 15:35:23 +0100 |
---|---|---|
committer | Daniel Gultsch <daniel@gultsch.de> | 2016-01-12 15:35:23 +0100 |
commit | 921d567dcbbf55fed97aa1c69c81316f0abde0f1 (patch) | |
tree | 58262d2b62140e9b4c04062c5d4e0e5d5f6a5c55 /src/main/res | |
parent | da6076028f722d7847cd2e49d69cd17bf0fa012a (diff) |
use match_parent as height in conversations overview
Diffstat (limited to 'src/main/res')
-rw-r--r-- | src/main/res/layout/conversation_list_row.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/res/layout/conversation_list_row.xml b/src/main/res/layout/conversation_list_row.xml index 984073b3..cd3f9266 100644 --- a/src/main/res/layout/conversation_list_row.xml +++ b/src/main/res/layout/conversation_list_row.xml @@ -6,13 +6,13 @@ <View android:layout_width="fill_parent" - android:layout_height="fill_parent" + android:layout_height="match_parent" android:background="@color/primary"/> <FrameLayout android:id="@+id/swipeable_item" android:layout_width="fill_parent" - android:layout_height="fill_parent" + android:layout_height="wrap_content" android:background="@color/grey50"> <RelativeLayout |