1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
                android:layout_width="match_parent"
                android:layout_height="48dp"
                android:background="@drawable/ic_bground"
                android:orientation="vertical">
 
    <View
        android:id="@+id/view_line"
        android:layout_width="3dp"
        android:visibility="invisible"
        android:layout_height="match_parent"
        android:background="@color/colorAccent"/>
 
    <TextView
        android:id="@+id/tv_name"
        android:layout_width="wrap_content"
        android:layout_centerInParent="true"
        android:layout_marginLeft="8dp"
        android:layout_marginRight="8dp"
        android:layout_height="wrap_content"
        android:textColor="@android:color/white"
        android:layout_toRightOf="@id/view_line"/>
 
    <View
        android:layout_width="match_parent"
        android:layout_height="0.3dp"
        android:background="#c9c9c9"/>
 
</RelativeLayout>