为嵌套的PreferenceScreen二级页面添加ActionBar

之前开发遇到过一个问题:

在一个继承自PreferenceActivity的类上绑定了PreferenceScreen界面,并添加了ActionBar实现返回效果.
在其界面里面还嵌套了新的PreferenceScreen,但是通过嵌套PreferenceScreen实现的二级页面却没有ActionBar.

然后就开始看PreferenceScreen的源码并在网上查找相关信息,后来还是手动为二级嵌套的PreferenceScreen添加了ActionBar并设置其点击事件.
系统的action_bar里面的左上角返回按钮竟然没有id,不得不遍历子控件找出类型为imageButton的控件,再添加click事件...

鉴于这是一个通用问题,便把这个逻辑提到了工具类里,方便其他界面使用.代码如下:

   /**
     * PreferenceScreen use a dialog to display the screen.Here add a clickListener for actionBar's
     * imageButton in the upper left corner in this screen. It will trigger the method dialog.onBackPressed()
     * to dismiss the dialog when user clicked.
     *
     * @param context
     * @param preferenceScreen
     */
    public static void initializeActionBar(Context context, PreferenceScreen preferenceScreen) {
        if (preferenceScreen == null) {
            return;
        }
        Dialog dialog = preferenceScreen.getDialog();
        ImageButton imageButton = null;
        if (dialog == null) {
            return;
        }

        dialog.getActionBar().setDisplayHomeAsUpEnabled(true);
        Window win = dialog.getWindow();
        View mDecorView = win.getDecorView();
        ViewGroup sceneRoot = (ViewGroup) mDecorView.findViewById(getInternalId(context, "action_bar"));
        if (sceneRoot == null) {
            return;
        }

        for (int i = 0; i < sceneRoot.getChildCount(); i++) {
            if (sceneRoot.getChildAt(i) instanceof ImageButton) {
                imageButton = (ImageButton) sceneRoot.getChildAt(i);
                break;
            }
        }
        if (imageButton == null) {
            return;
        }

        imageButton.setOnClickListener(new OnClickListener() {
            @Override
            public void onClick(View v) {
                dialog.onBackPressed();
            }
        });
    }
    
    public static int getInternalId(Context context, String idName) {
        Resources resources = context.getResources();
        int id = resources.getIdentifier(idName, "id", "android");
        return id;
    }

然而测试总有各种各样的办法找出问题,操作是这样的:

在这个二级界面点home返回主界面后,去设置里更改下语言,然后再切回二级界面,发现点击左上角的actionbar返回按钮不管用了.

虽然不常见,但确实需要解决.然后还是得看PreferenceScreen源码,找出出现问题的原因.

原来是切换语言后,view进行了重新绘制,但是PreferenceScreen只是保存了UI基本的结构.里面的mDialog是新建的,不再是老的了.那么之前携带的click事件也不存在了,也就没有了点击返回效果.

下面看看相关源码(源码本就不多,以下几乎是全部逻辑了)

public final class PreferenceScreen extends PreferenceGroup implements AdapterView.OnItemClickListener,
        DialogInterface.OnDismissListener {
    private Dialog mDialog;
    private ListView mListView;
    
    @Override
    protected void onClick() {
        if (getIntent() != null || getFragment() != null || getPreferenceCount() == 0) {
            return;
        }
        
        showDialog(null);
    }
    
    private void showDialog(Bundle state) {
        Context context = getContext();
        if (mListView != null) {
            mListView.setAdapter(null);
        }

        LayoutInflater inflater = (LayoutInflater)
                context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        View childPrefScreen = inflater.inflate(
                com.android.internal.R.layout.preference_list_fragment, null);
        mListView = (ListView) childPrefScreen.findViewById(android.R.id.list);
        bind(mListView);

        // Set the title bar if title is available, else no title bar
        final CharSequence title = getTitle();

        // 这里新建了dialog
        Dialog dialog = mDialog = new Dialog(context, context.getThemeResId());
        if (TextUtils.isEmpty(title)) {
            dialog.getWindow().requestFeature(Window.FEATURE_NO_TITLE);
        } else {
            dialog.setTitle(title);
        }
        dialog.setContentView(childPrefScreen);
        dialog.setOnDismissListener(this);
        if (state != null) {
            //初始化的时候state是空的,执行onRestoreInstanceState时才会走这里
            //state不为空,所以重新绘制后会保留之前添加的UI部分
            dialog.onRestoreInstanceState(state);
        }

        // Add the screen to the list of preferences screens opened as dialogs
        getPreferenceManager().addPreferencesScreen(dialog);
        
        dialog.show();
    }
    
    public void onDismiss(DialogInterface dialog) {
        mDialog = null;
        getPreferenceManager().removePreferencesScreen(dialog);
    }

    @Override
    protected Parcelable onSaveInstanceState() {
        final Parcelable superState = super.onSaveInstanceState();
        final Dialog dialog = mDialog;
        if (dialog == null || !dialog.isShowing()) {
            return superState;
        }
        
        //退出前保存UI逻辑
        final SavedState myState = new SavedState(superState);
        myState.isDialogShowing = true;
        myState.dialogBundle = dialog.onSaveInstanceState();
        return myState;
    }

    @Override
    protected void onRestoreInstanceState(Parcelable state) {
        if (state == null || !state.getClass().equals(SavedState.class)) {
            // Didn't save state for us in onSaveInstanceState
            super.onRestoreInstanceState(state);
            return;
        }
         
        SavedState myState = (SavedState) state;
        super.onRestoreInstanceState(myState.getSuperState());
        if (myState.isDialogShowing) {
            //由于之前有actionbar,所以会将保存的状态传到是哦我Dialog里面
            showDialog(myState.dialogBundle);
        }
    }
    
    private static class SavedState extends BaseSavedState {
        boolean isDialogShowing;
        Bundle dialogBundle;
        
        public SavedState(Parcel source) {
            super(source);
            isDialogShowing = source.readInt() == 1;
            dialogBundle = source.readBundle();
        }

        @Override
        public void writeToParcel(Parcel dest, int flags) {
            super.writeToParcel(dest, flags);
            dest.writeInt(isDialogShowing ? 1 : 0);
            dest.writeBundle(dialogBundle);
        }

        public SavedState(Parcelable superState) {
            super(superState);
        }

        public static final Parcelable.Creator<SavedState> CREATOR =
                new Parcelable.Creator<SavedState>() {
            public SavedState createFromParcel(Parcel in) {
                return new SavedState(in);
            }

            public SavedState[] newArray(int size) {
                return new SavedState[size];
            }
        };
    }
}
 

从源码看,我们需要在新的mDialog里重新加一次点击事件,正好可以加在调用原生onRestoreInstanceState方法之后.

    @Override
    protected void onRestoreInstanceState(Bundle state) {
        super.onRestoreInstanceState(state);
         initializeActionBar(...);
    }
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,001评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,210评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,874评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,001评论 1 291
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,022评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,005评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,929评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,742评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,193评论 1 309
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,427评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,583评论 1 346
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,305评论 5 342
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,911评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,564评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,731评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,581评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,478评论 2 352

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 172,050评论 25 707
  • ¥开启¥ 【iAPP实现进入界面执行逐一显】 〖2017-08-25 15:22:14〗 《//首先开一个线程,因...
    小菜c阅读 6,397评论 0 17
  • 对女儿初中物理学习的导论 1. 物理研究什么? =》见物思理 思考题: 就轿车提出问题 3. 物理模型 =》 地心...
    老J阅读 314评论 0 1
  • 爬虫入门01作业 phsyke: 一直以来对爬虫挺感兴趣的,最近因为工作上的一些原因,需要的数据采集会比较多,需要...
    phsyke阅读 749评论 1 2
  • 在知笔墨中看到过笑来老师关于坐享的文章封面(根本就没点进去看),看《正念的奇迹》时一看到坐享的部分就跳跃过去,对坐...
    一剑飘香999阅读 187评论 1 1