35 lines
1.0 KiB
XML
35 lines
1.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:padding="12dp"
|
|
android:gravity="center_vertical"
|
|
android:background="@android:color/white">
|
|
|
|
<TextView
|
|
android:id="@+id/tvLevel"
|
|
android:layout_width="80dp"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="18sp"
|
|
android:fontFamily="sans-serif-medium"/>
|
|
|
|
<TextView
|
|
android:id="@+id/tvDischargeTime"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:textSize="16sp"
|
|
android:paddingStart="16dp"/>
|
|
|
|
<TextView
|
|
android:id="@+id/tvChargeTime"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:textSize="16sp"
|
|
android:paddingStart="16dp"/>
|
|
|
|
</LinearLayout>
|