30 lines
1011 B
XML
30 lines
1011 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/ll"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:gravity="bottom"
|
|
android:orientation="vertical">
|
|
|
|
<com.xwad.os.view.jxw.view.VerticalProgressBar
|
|
android:id="@+id/battery_pb"
|
|
android:layout_width="16dp"
|
|
android:layout_height="56dp"
|
|
android:layout_marginStart="8dp"
|
|
android:layout_marginEnd="8dp" />
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:background="@color/white" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_data"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_marginTop="1dp"
|
|
android:text="05.10"
|
|
android:textColor="@color/white"
|
|
android:textSize="8dp" />
|
|
</LinearLayout> |