2017-11-16 23:21:46 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="match_parent"
|
2020-08-25 10:34:30 +00:00
|
|
|
android:layout_height="wrap_content">
|
2017-11-16 23:21:46 +00:00
|
|
|
|
|
|
|
<TextView android:id="@+id/label"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingStart="16dp"
|
|
|
|
android:paddingTop="10dp"
|
|
|
|
android:paddingBottom="10dp"
|
|
|
|
android:textColor="@color/signal_primary_dark"
|
|
|
|
tools:text="Recent chats"/>
|
|
|
|
|
2020-08-25 10:34:30 +00:00
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1px"
|
|
|
|
android:background="?dividerHorizontal"/>
|
|
|
|
|
2017-11-16 23:21:46 +00:00
|
|
|
</LinearLayout>
|