Android 8.0 SystemUI下拉状态栏快捷开关

基于工作需要,基本是在Android源生代码上进行开发,从android 5.0到现在8.0,这两年碰到各种问题发现关于Android源生发开方面的特别少。于是想着开始把遇到的、解决的问题写下来,或许对读者会有帮助。

一、SystemUI下拉开关布局:

android 8.0有了新的改变,开光布局与之前不太一样。布局文件还是\frameworks\base\packages\SystemUI\res\layout\qs_panel.xml。 qs_panel布局中:
QSPanel、qs_footer_impl、quick_status_bar_expanded_header等。
QSPanel是开关二级界面,是开关展开后的界面。




~
~

在布局quick_status_bar_expanded_header中,QuickQSPanel就是下拉开关的布局,而 quick_status_bar_header_system_icons布局是下拉开关顶部的时间、日期、开关编辑按钮等。


    

android 8.0 PhoneStatusBar也换成了StatusBar。也没有QuickSettings、QuickSettingsModel等文件了。变得更加的模块化管理了。这里有一点说一下。android 8.0之前的版本 在qs_panel中添加控件、布局等,在PhoneStatusBar中是可以通过findViewById获取到,可以操作的。android 8.0是获取不到的,所以如果你在qs_panel.xml中加了一些自己的东西,最好是在QSfragement中对它进行一系列操作,我当时可是被这个坑惨了。

QuickQSPanel 继承 QSPanelQSPanel 中添加了亮度调节开关、开关页面计数器、开关展开页面等等。
文件路径:
frameworks\base\packages\SystemUI\src\com\android\systemui\qs\QSPanel.java
frameworks\base\packages\SystemUI\src\com\android\systemui\qs\QuickQSPanel.java

二、下拉开关的创建:

在frameworks\base\packages\SystemUI\src\com\android\systemui\qs\tileimpl\QSFactoryImpl.java中进行开关的创建。

 public QSTile createTile(String tileSpec) {
        if (tileSpec.equals("wifi")) return new WifiTile(mHost);
        else if (tileSpec.equals("bt")) return new BluetoothTile(mHost);
        else if (tileSpec.equals("cell")) return new CellularTile(mHost);
        else if (tileSpec.equals("dnd")) return new DndTile(mHost);
        else if (tileSpec.equals("inversion")) return new ColorInversionTile(mHost);
        else if (tileSpec.equals("airplane")) return new AirplaneModeTile(mHost);
        else if (tileSpec.equals("work")) return new WorkModeTile(mHost);
        else if (tileSpec.equals("rotation")) return new RotationLockTile(mHost);
        else if (tileSpec.equals("flashlight")) return new FlashlightTile(mHost);
        else if (tileSpec.equals("location")) return new LocationTile(mHost);
        else if (tileSpec.equals("cast")) return new CastTile(mHost);
        else if (tileSpec.equals("hotspot")) return new HotspotTile(mHost);
        else if (tileSpec.equals("user")) return new UserTile(mHost);
        else if (tileSpec.equals("battery")) return new BatterySaverTile(mHost);
        else if (tileSpec.equals("saver")) return new DataSaverTile(mHost);
        else if (tileSpec.equals("night")) return new NightDisplayTile(mHost);
        else if (tileSpec.equals("nfc")) return new NfcTile(mHost);
        // Intent tiles.
        else if (tileSpec.startsWith(IntentTile.PREFIX)) return IntentTile.create(mHost, tileSpec);
        else if (tileSpec.startsWith(CustomTile.PREFIX)) return CustomTile.create(mHost, tileSpec);
        else {
            Log.w(TAG, "Bad tile spec: " + tileSpec);
            return null;
        }
    }

 @Override
    public QSTileView createTileView(QSTile tile, boolean collapsedView) {
        Context context = new ContextThemeWrapper(mHost.getContext(), R.style.qs_theme);
        QSIconView icon = tile.createTileView(context);
        if (collapsedView) {
            return new QSTileBaseView(context, icon, collapsedView);
        } else {
            return new com.android.systemui.qs.tileimpl.QSTileView(context, icon);
        }
    }

~
android 8.0和之前的版本有那么点小小的区别,开关是一个一个的实体类,继承QSTileImpl.java,重写handleClick()、getLongClickIntent()、handleUpdateState()等方法,看到这些方法名就知道是什么干什么的了。
例如NfcTile.java

public class NfcTile extends QSTileImpl {

    private NfcAdapter mAdapter;

    private boolean mListening;

    public NfcTile(QSHost host) {
        super(host);
    }

    @Override
    public BooleanState newTileState() {
        return new BooleanState();
    }

    @Override
    public void handleSetListening(boolean listening) {
        mListening = listening;
        if (mListening) {
            mContext.registerReceiver(mNfcReceiver,
                    new IntentFilter(NfcAdapter.ACTION_ADAPTER_STATE_CHANGED));
        } else {
            mContext.unregisterReceiver(mNfcReceiver);
        }
    }

    @Override
    public boolean isAvailable() {
        return mContext.getPackageManager().hasSystemFeature(PackageManager.FEATURE_NFC);
    }

    @Override
    protected void handleUserSwitch(int newUserId) {
    }

    @Override
    public Intent getLongClickIntent() {
        return new Intent(Settings.ACTION_NFC_SETTINGS);
    }

    @Override
    protected void handleClick() {
        if (!getAdapter().isEnabled()) {
            getAdapter().enable();
        } else {
            getAdapter().disable();
        }
    }

    @Override
    protected void handleSecondaryClick() {
        handleClick();
    }

    @Override
    public CharSequence getTileLabel() {
        return mContext.getString(R.string.quick_settings_nfc_label);
    }

    @Override
    protected void handleUpdateState(BooleanState state, Object arg) {
        final Drawable mEnable = mContext.getDrawable(R.drawable.ic_qs_nfc_enabled);
        final Drawable mDisable = mContext.getDrawable(R.drawable.ic_qs_nfc_disabled);
        state.value = getAdapter().isEnabled();
        state.label = mContext.getString(R.string.quick_settings_nfc_label);
        state.icon = new DrawableIcon(state.value ? mEnable : mDisable);
        state.expandedAccessibilityClassName = Switch.class.getName();
        state.contentDescription = state.label;
    }

    @Override
    public int getMetricsCategory() {
        return MetricsEvent.QS_NFC;
    }

    @Override
    protected String composeChangeAnnouncement() {
        if (mState.value) {
            return mContext.getString(R.string.quick_settings_nfc_on);
        } else {
            return mContext.getString(R.string.quick_settings_nfc_off);
        }
    }

    private NfcAdapter getAdapter() {
        if (mAdapter == null) {
            try {
                mAdapter = NfcAdapter.getNfcAdapter(mContext);
            } catch (UnsupportedOperationException e) {
                mAdapter = null;
            }
        }
        return mAdapter;
    }

    private BroadcastReceiver mNfcReceiver = new BroadcastReceiver() {
        @Override
        public void onReceive(Context context, Intent intent) {
            refreshState();
        }
    };
}

如果你需要创建一个自己的开关、写个类继承QSTileImpl,重写这些方法,添加开关功能、开关状态刷新,图片文字等。

~
~
最后,说一下开关顺序问题
开关顺序读取在frameworks\base\packages\SystemUI\src\com\android\systemui\qs\QSTileHost.java中loadTilesSpece()方法,R.string.quick_settings_tiles_default 定义在frameworks\base\packages\SystemUI\res\values\config.xml中。
这里,如果你的config.xml中R.string.quick_settings_tiles_default中的顺序和实际开关顺序不符,那注意是否存在android\vendor\qcom\proprietary\qrdplus\globalization\multi-language\res-overlay\frameworks\base\packages\SystemUI\res\values\config.xml文件。
如果存在,会使用这个下面的文件。当然你也可以定义一个自己的顺序,直接使用。

protected List loadTileSpecs(Context context, String tileList) {
        final Resources res = context.getResources();
        final String defaultTileList = res.getString(R.string.quick_settings_tiles_default_allen);
        tileList = defaultTileList;
        if (tileList == null) {
            tileList = res.getString(R.string.quick_settings_tiles);
            if (DEBUG) Log.d(TAG, "Loaded tile specs from config: " + tileList);
        } else {
            if (DEBUG) Log.d(TAG, "Loaded tile specs from setting: " + tileList);
        }
        final ArrayList tiles = new ArrayList();
        boolean addedDefault = false;
        for (String tile : tileList.split(",")) {
            tile = tile.trim();
            if (tile.isEmpty()) continue;
            if (tile.equals("default")) {
                if (!addedDefault) {
                    tiles.addAll(Arrays.asList(defaultTileList.split(",")));
                    addedDefault = true;
                }
            } else {
                tiles.add(tile);
            }
        }
        return tiles;
    }

~
~
~
希望这篇文章能对在android源生上开发的朋友有些帮助,随后有时间会更新系统状态栏,下拉通知栏、手机信号等相关的文章。

你可能感兴趣的:(Android 8.0 SystemUI下拉状态栏快捷开关)