22 lines
730 B
XML
22 lines
730 B
XML
<?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="match_parent"
|
|
android:gravity="center_horizontal">
|
|
|
|
<TextView
|
|
android:id="@+id/value"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerVertical="true"
|
|
android:gravity="center"
|
|
android:textColor="#ffffff"
|
|
android:textSize="16sp"
|
|
android:background="@drawable/rounded_corners" />
|
|
|
|
<Space
|
|
android:id="@+id/separationLine"
|
|
android:layout_width="3dp"
|
|
android:layout_height="match_parent" />
|
|
|
|
</RelativeLayout> |