Files
Xuewang365OSNeutral/app/src/main/res/layout/item_chart.xml
tongtongstudio 2ed1a735cf version:1.0.1
fix:
update:基本功能完成,修复闪退,更换壁纸未实现
2025-12-04 12:04:58 +08:00

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>