<?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>
|