zoukankan      html  css  js  c++  java
  • Browser增加下载路径选择功能

    SWE Browser中有xml/download_settings_preferences.xml, 但在代码中却没有调用,导致“设置”中没有”选择下载路径“功能。

    在com.android.browser.preferences.GeneralPreferencesFragment增加”选择下载路径“功能

    /*add for download path choose*/
    private
    void onInitdownloadSettingsPreference() { addPreferencesFromResource(R.xml.download_settings_preferences); PreferenceScreen downloadPathPreset = (PreferenceScreen) findPreference(PreferenceKeys.PREF_DOWNLOAD_PATH); downloadPathPreset.setOnPreferenceClickListener(onClickDownloadPathSettings()); String downloadPath = downloadPathPreset.getSharedPreferences(). getString(PreferenceKeys.PREF_DOWNLOAD_PATH, BrowserSettings.getInstance().getDownloadPath()); String downloadPathForUser = DownloadHandler.getDownloadPathForUser(this.getActivity(), downloadPath); downloadPathPreset.setSummary(downloadPathForUser); } private Preference.OnPreferenceClickListener onClickDownloadPathSettings() { return new Preference.OnPreferenceClickListener() { public boolean onPreferenceClick(Preference preference) { try { Intent i = new Intent("com.android.fileexplorer.action.DIR_SEL"); GeneralPreferencesFragment.this.startActivityForResult(i, DOWNLOAD_PATH_RESULT_CODE); } catch (Exception e) { String err_msg = getResources().getString(R.string.activity_not_found, "com.android.fileexplorer.action.DIR_SEL"); Toast.makeText(getActivity(), err_msg, Toast.LENGTH_LONG).show(); } return true; } }; }
    /*end add */
    public void onActivityResult(int requestCode, int resultCode, Intent data) {
            super.onActivityResult(requestCode, resultCode, data);
            mAdvFrag.onActivityResult(requestCode,resultCode, data);
            /*add for download path choose*/
            if (requestCode == DOWNLOAD_PATH_RESULT_CODE) {
                if (resultCode == Activity.RESULT_OK && data != null) {
                    String downloadPath = data.getStringExtra("result_dir_sel");
                    if (downloadPath != null) {
                        PreferenceScreen downloadPathPreset =
                                (PreferenceScreen) findPreference(PreferenceKeys.PREF_DOWNLOAD_PATH);
                        Editor editor = downloadPathPreset.getEditor();
                        editor.putString(PreferenceKeys.PREF_DOWNLOAD_PATH, downloadPath);
                        editor.apply();
                        String downloadPathForUser = DownloadHandler.getDownloadPathForUser(
                                this.getActivity(), downloadPath);
                        downloadPathPreset.setSummary(downloadPathForUser);
                    }
    
                    return;
                }
            }
            /*end add*/
        }

    onCreate中调用onInitdownloadSettingsPreference(),将download_settings_preferences.xml加到布局中。

    public void onCreate(Bundle savedInstanceState) {
            ......
    
            // Load the XML preferences file
            addPreferencesFromResource(R.xml.general_preferences);
    
            ......
            
            onInitdownloadSettingsPreference();//add for download path chhoose
        }
  • 相关阅读:
    thinkphp中field的用法
    Thinkphp常用标签
    thinkphp框架的相关总结
    TP 控制器扩展_initialize方法实现原理
    Thinkphp中的volist标签(查询数据集(select方法)的结果输出)用法简介
    php中遍历数组的方法
    django自定义过滤器
    centos7 安装 mysql
    centos7 安装 nginx
    centos 服务器改名
  • 原文地址:https://www.cnblogs.com/antoon/p/4466745.html
Copyright © 2011-2022 走看看