Commit c4b026d3 authored by Grigory Fedorov's avatar Grigory Fedorov

Bottom 1px separators for account groups and usual contact groups.

parent 17bc4108
...@@ -12,16 +12,22 @@ ...@@ -12,16 +12,22 @@
You should have received a copy of the GNU General Public License, You should have received a copy of the GNU General Public License,
along with this program. If not, see http://www.gnu.org/licenses/. along with this program. If not, see http://www.gnu.org/licenses/.
--> -->
<LinearLayout
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="@dimen/contact_list_item_height" android:layout_height="@dimen/contact_list_item_height"
android:orientation="horizontal"
android:gravity="center_vertical"
android:background="@color/green_200" android:background="@color/green_200"
android:elevation="3dp" android:elevation="3dp"
> >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
android:gravity="center_vertical"
>
<ImageView <ImageView
android:id="@+id/account_color_indicator" android:id="@+id/account_color_indicator"
...@@ -129,4 +135,13 @@ ...@@ -129,4 +135,13 @@
android:padding="16dp" android:padding="16dp"
/> />
</LinearLayout> </LinearLayout>
\ No newline at end of file
<View
android:layout_width="match_parent"
android:layout_height="1px"
android:background="@color/grey_500"
android:layout_alignParentBottom="true"
/>
</RelativeLayout>
\ No newline at end of file
...@@ -113,7 +113,7 @@ ...@@ -113,7 +113,7 @@
</LinearLayout> </LinearLayout>
<View <View
android:layout_width="wrap_content" android:layout_width="match_parent"
android:layout_height="1px" android:layout_height="1px"
android:background="@color/grey_400" android:background="@color/grey_400"
android:layout_alignParentBottom="true" android:layout_alignParentBottom="true"
......
...@@ -16,8 +16,6 @@ ...@@ -16,8 +16,6 @@
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="@dimen/expander_height" android:layout_height="@dimen/expander_height"
android:paddingRight="@dimen/active_chat_padding_right"
android:paddingEnd="@dimen/active_chat_padding_right"
android:elevation="2dp" android:elevation="2dp"
> >
...@@ -41,6 +39,9 @@ ...@@ -41,6 +39,9 @@
android:layout_alignParentRight="true" android:layout_alignParentRight="true"
android:layout_centerVertical="true" android:layout_centerVertical="true"
android:alpha="0.2" android:alpha="0.2"
android:paddingRight="@dimen/active_chat_padding_right"
android:paddingEnd="@dimen/active_chat_padding_right"
/> />
<TextView <TextView
...@@ -57,4 +58,11 @@ ...@@ -57,4 +58,11 @@
android:layout_toStartOf="@id/group_offline_indicator" android:layout_toStartOf="@id/group_offline_indicator"
/> />
<View
android:layout_width="match_parent"
android:layout_height="1px"
android:background="@color/grey_400"
android:layout_alignParentBottom="true"
/>
</RelativeLayout> </RelativeLayout>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment