✨ 新增功能 - 播放页面添加电池电量显示功能 - 充电时显示闪电图标 - 时间、闪电图标、电量百分比分离显示 🎨 界面优化 - 优化搜索页面左侧视频源列表间距和字体大小 - 改进布局紧凑性,提升视觉体验 🐛 问题修复 - 修复全屏播放模式下电池百分比无法显示的问题 - 修复普通布局缺少电量显示控件的问题 🔧 其他改进 - 删除隐私协议页面顶部应用图标 - 优化通知权限请求时机(改为用户同意隐私协议后请求)
18 lines
634 B
XML
18 lines
634 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/text"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="6dp"
|
|
android:layout_marginTop="8dp"
|
|
android:layout_marginEnd="6dp"
|
|
android:layout_marginBottom="8dp"
|
|
android:background="@drawable/shape_item"
|
|
android:gravity="center"
|
|
android:padding="8dp"
|
|
android:singleLine="true"
|
|
android:textColor="@color/text"
|
|
android:textSize="12sp"
|
|
tools:text="泥巴" />
|