添加应用电量使用情况报告

This commit is contained in:
ZhanGSKen
2025-10-22 16:56:17 +08:00
parent c3978a1e3c
commit f7b2c0d4c0
4 changed files with 334 additions and 76 deletions

View File

@@ -1,22 +1,31 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
android:orientation="vertical"
android:background="@android:color/white">
<!-- 搜索框:使用系统兼容背景 -->
<EditText
android:id="@+id/et_search"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="搜索应用名称或包名"
android:padding="8dp"
android:background="@android:drawable/editbox_background" />
android:layout_margin="8dp"
android:padding="12dp"
android:hint="搜索应用包名"
android:background="@android:drawable/btn_default_small"
android:inputType="text"
android:textSize="16sp"/>
<!-- 应用列表:不依赖系统分割线,避免资源缺失 -->
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/rv_battery_report"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="8dp" />
android:layout_height="0dp"
android:layout_weight="1"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"/>
</LinearLayout>