You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.7 KiB

3 years ago
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@color/white"
android:orientation="vertical"
android:paddingTop="10dp">
<TextView
android:id="@+id/attribute"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_marginLeft="15dp"
android:textColor="@color/color_black_ff666666"
android:textSize="@dimen/text_size_17" />
<TextView
android:id="@+id/value"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBaseline="@id/attribute"
android:layout_centerVertical="true"
android:layout_marginLeft="15dp"
android:layout_toRightOf="@id/attribute"
android:padding="5dp"
android:textColor="@color/color_black_333333"
android:textSize="@dimen/text_size_15" />
<View
android:layout_width="match_parent"
android:layout_height="2px"
android:layout_below="@id/value"
android:layout_marginTop="10dp"
android:background="@color/color_split_line_d9d9d9" />
<ImageView
android:id="@+id/arrow_right"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:layout_marginRight="10dp"
android:background="@drawable/nim_arrow_right"
android:visibility="gone" />
</RelativeLayout>