Android10 状态栏蓝牙电量图标

Android10 源码状态栏蓝牙电量图标相关类

BatteryMeterDrawableBase:电量图标基类

BluetoothDeviceLayerDrawable: LayerDrawable 包含蓝牙设备图标和电池电量图标

BatteryMeterDrawable:内部类,继承自BatteryMeterDrawableBase

BluetoothDeviceLayerDrawableState:内部类,继承自ConstantState

电量图标

电量图标由BatteryMeterDrawableBase绘制,虽然BluetoothDeviceLayerDrawable的内部类BatteryMeterDrawable继承自BatteryMeterDrawableBase,但并没有重写太多东西

java 复制代码
    public BatteryMeterDrawableBase(Context context, int frameColor) {
        mContext = context;
        final Resources res = context.getResources();
        TypedArray levels = res.obtainTypedArray(R.array.batterymeter_color_levels); //15、100
        TypedArray colors = res.obtainTypedArray(R.array.batterymeter_color_values); //红色、白色

        final int N = levels.length();
        mColors = new int[2 * N];
        for (int i = 0; i < N; i++) {
            mColors[2 * i] = levels.getInt(i, 0);
            if (colors.getType(i) == TypedValue.TYPE_ATTRIBUTE) {
                mColors[2 * i + 1] = Utils.getColorAttrDefaultColor(context,
                        colors.getThemeAttributeId(i, 0));
            } else {
                mColors[2 * i + 1] = colors.getColor(i, 0);
            }
        }
        levels.recycle();  //回收资源
        colors.recycle();

        mWarningString = context.getString(R.string.battery_meter_very_low_overlay_symbol);
        mCriticalLevel = mContext.getResources().getInteger(
                com.android.internal.R.integer.config_criticalBatteryWarningLevel); //=5:临界电量值
        mButtonHeightFraction = context.getResources().getFraction(
                R.fraction.battery_button_height_fraction, 1, 1); //高度百分比
        mSubpixelSmoothingLeft = context.getResources().getFraction( //不知道是什么,也没被调用
                R.fraction.battery_subpixel_smoothing_left, 1, 1);
        mSubpixelSmoothingRight = context.getResources().getFraction( //不知道是什么,也没被调用
                R.fraction.battery_subpixel_smoothing_right, 1, 1);
        ......
    }

想要修改什么,修改对应的资源值就好。

整合

由BluetoothDeviceLayerDrawable将蓝牙图标放在左边,电量图标放在右边。

BluetoothDeviceLayerDrawable的构造函数是私有的,通过createLayerDrawable方法获取实例对象。

java 复制代码
    public static BluetoothDeviceLayerDrawable createLayerDrawable(Context context, int resId,
            int batteryLevel, float iconScale) {
        final Drawable deviceDrawable = context.getDrawable(resId);

        final BatteryMeterDrawable batteryDrawable = new BatteryMeterDrawable(context,
                context.getColor(R.color.meter_background_color), batteryLevel);
        final int pad = context.getResources().getDimensionPixelSize(R.dimen.bt_battery_padding);
        batteryDrawable.setPadding(pad, pad, pad, pad);
        //创建
        final BluetoothDeviceLayerDrawable drawable = new BluetoothDeviceLayerDrawable(
                new Drawable[]{deviceDrawable, batteryDrawable});  //图层
        // Set the bluetooth icon at the left
        drawable.setLayerGravity(0 /* index of deviceDrawable */, Gravity.START); //蓝牙图标
        // Set battery icon to the right of the bluetooth icon
        //下面两句确认电量图标绘制的其实像素点(x,y)=(deviceDrawable.getIntrinsicWidth(),deviceDrawable.getIntrinsicHeight() * (1 - iconScale))
        drawable.setLayerInsetStart(1 /* index of batteryDrawable */,
                deviceDrawable.getIntrinsicWidth());  //电量图标
        drawable.setLayerInsetTop(1 /* index of batteryDrawable */,
                (int) (deviceDrawable.getIntrinsicHeight() * (1 - iconScale)));

        drawable.setConstantState(context, resId, batteryLevel, iconScale);

        return drawable;
    }
相关推荐
watl08 分钟前
【Android】unzip aar删除冲突classes再zip
android·linux·运维
键盘上的蚂蚁-11 分钟前
PHP爬虫类的并发与多线程处理技巧
android
喜欢猪猪1 小时前
Java技术专家视角解读:SQL优化与批处理在大数据处理中的应用及原理
android·python·adb
JasonYin~3 小时前
HarmonyOS NEXT 实战之元服务:静态案例效果---手机查看电量
android·华为·harmonyos
zhangphil3 小时前
Android adb查看某个进程的总线程数
android·adb
抛空3 小时前
Android14 - SystemServer进程的启动与工作流程分析
android
Gerry_Liang5 小时前
记一次 Android 高内存排查
android·性能优化·内存泄露·mat
天天打码6 小时前
ThinkPHP项目如何关闭runtime下Log日志文件记录
android·java·javascript
爱数学的程序猿9 小时前
Python入门:6.深入解析Python中的序列
android·服务器·python
brhhh_sehe9 小时前
重生之我在异世界学编程之C语言:深入文件操作篇(下)
android·c语言·网络