diff options
author | steckbrief <steckbrief@chefmail.de> | 2015-09-02 21:29:23 +0200 |
---|---|---|
committer | steckbrief <steckbrief@chefmail.de> | 2015-09-02 21:29:23 +0200 |
commit | 38dfb6d6c742b6a1f88308369036918919fa34d2 (patch) | |
tree | e2c02b5d0b654a8203d4817f99111e3e17da77c4 /src/main/res/layout | |
parent | 659875959750aae9af0a1a253f1af16c1a770198 (diff) |
Fixes FS#49: Highlight the selected conversation in list
Diffstat (limited to 'src/main/res/layout')
-rw-r--r-- | src/main/res/layout/conversation_list_row.xml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/main/res/layout/conversation_list_row.xml b/src/main/res/layout/conversation_list_row.xml index c79628d4..efa10748 100644 --- a/src/main/res/layout/conversation_list_row.xml +++ b/src/main/res/layout/conversation_list_row.xml @@ -5,7 +5,8 @@ android:layout_height="wrap_content" android:orientation="horizontal" android:padding="8dp" - android:descendantFocusability="blocksDescendants"> + android:descendantFocusability="blocksDescendants" + android:id="@+id/conversationListRowFrame"> <View android:layout_width="fill_parent" @@ -21,9 +22,9 @@ <RelativeLayout android:layout_width="fill_parent" android:layout_height="wrap_content" - android:background="?android:selectableItemBackground" android:orientation="horizontal" - android:padding="8dp" > + android:padding="8dp" + android:id="@+id/conversationListRowContent"> <ImageView android:id="@+id/conversation_image" @@ -46,7 +47,7 @@ android:layout_height="wrap_content" android:layout_centerVertical="true" android:layout_toRightOf="@+id/conversation_image" - android:paddingLeft="8dp" > + android:paddingLeft="8dp"> <TextView |