Android4.0设置界面改动总结(三)
Android4.0设置界面改动总结大概介绍了一下设置改tab风格,事实上原理非常easy,理解两个基本的函数就可以:
①.invalidateHeaders(),调用此函数将又一次调用onBuildHeader()来又一次读取xml文件里的header,又一次刷新HeaderAdapter中的数据,因此刷新了ListView的内容,从而更新了界面。
②.onBuildHeaders()中调用loadHeadersFromResource(resId, headers);
就可以又一次载入HeaderAdapter的数据。
可是上次有一个问题,不能横竖屏切换,由于有一些bug未解决,所以我在onCreate中增加了:
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);这一句,
另外代码结构略微调整了一下,再和大家分享一下。
主要改动有下面两点:
①.能够横竖屏切换,主要是在HeaderAdapter中增加了一个函数:flushViewCache()。同意横竖屏切换时又一次刷新数据。
②.将每一个tab相应的xml布局当成每一个tab的tag传递给onBuildHeaders,又一次刷新缓存的HeaderAdapter。
好了,废话不多说了,直接上源代码。能够搜索标签 20140601,就可以找到我全部的改动。
Settings.java源代码:
/*
* Copyright (C) 2008 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/ package com.android.settings;
import android.app.ActionBar;
import android.app.ActivityManager;
import com.android.internal.util.ArrayUtils;
import com.android.settings.accounts.AccountSyncSettings;
import com.android.settings.accounts.AuthenticatorHelper;
import com.android.settings.accounts.ManageAccountsSettings;
import com.android.settings.applications.ManageApplications;
import com.android.settings.bluetooth.BluetoothEnabler;
import com.android.settings.deviceinfo.Memory;
import com.android.settings.fuelgauge.PowerUsageSummary;
import com.android.settings.inputmethod.UserDictionaryAddWordFragment;
import com.android.settings.wifi.WifiEnabler;
import static com.sprd.android.config.OptConfig.LC_RAM_SUPPORT;
import android.accounts.Account;
import android.accounts.AccountManager;
import android.accounts.OnAccountsUpdateListener;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.content.pm.ActivityInfo;
import android.content.pm.PackageManager;
import android.content.pm.PackageManager.NameNotFoundException;
import android.graphics.drawable.Drawable;
import android.os.Bundle;
import android.os.INetworkManagementService;
import android.os.RemoteException;
import android.os.ServiceManager;
import android.os.UserId;
import android.os.SystemProperties;
import android.os.TopwiseProp;
import android.preference.Preference;
import android.preference.PreferenceActivity;
import android.preference.PreferenceActivity.Header;
import android.preference.PreferenceFragment;
import android.telephony.TelephonyManager;
import android.text.TextUtils;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
import android.widget.BaseAdapter;
import android.widget.Button;
import android.widget.ImageView;
import android.widget.ListAdapter;
import android.widget.Switch;
import android.widget.TextView; import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.HashMap;
import java.util.List; import android.app.ActionBar;
import android.app.ActionBar.Tab;
import android.app.ActionBar.TabListener;
import android.app.FragmentTransaction;
/**
* Top-level settings activity to handle single pane and double pane UI layout.
*/
public class Settings extends PreferenceActivity
implements ButtonBarHandler, OnAccountsUpdateListener { private static final String LOG_TAG = "Settings"; private static final String META_DATA_KEY_HEADER_ID =
"com.android.settings.TOP_LEVEL_HEADER_ID";
private static final String META_DATA_KEY_FRAGMENT_CLASS =
"com.android.settings.FRAGMENT_CLASS";
private static final String META_DATA_KEY_PARENT_TITLE =
"com.android.settings.PARENT_FRAGMENT_TITLE";
private static final String META_DATA_KEY_PARENT_FRAGMENT_CLASS =
"com.android.settings.PARENT_FRAGMENT_CLASS"; private static final String EXTRA_CLEAR_UI_OPTIONS = "settings:remove_ui_options"; private static final String SAVE_KEY_CURRENT_HEADER = "com.android.settings.CURRENT_HEADER";
private static final String SAVE_KEY_PARENT_HEADER = "com.android.settings.PARENT_HEADER";
//fix bug 210641 the text of "backup and reset" not appropriate ,when os did not support backup on 2013.9.4 start
private static final String GSETTINGS_PROVIDER = "com.google.settings";
//fix bug 210641 the text of "backup and reset" not appropriate ,when os did not support backup on 2013.9.4 send
public static boolean UNIVERSEUI_SUPPORT = SystemProperties.getBoolean("universe_ui_support",false);
public static final boolean CU_SUPPORT = SystemProperties.get("ro.operator").equals("cucc"); private String mFragmentClass;
private int mTopLevelHeaderId;
private Header mFirstHeader;
private Header mCurrentHeader;
private Header mParentHeader;
private boolean mInLocalHeaderSwitch;
//start by liweiping 20140601 for tab settings
private ActionBar mActionBar;
private int mCurrentTabIndex = 0;
private View mView;
public static LayoutInflater mInflater;
int mHeadersCategory = R.xml.settings_headers_uui;
private int[] mTabTitle = new int[] {
R.string.header_category_wireless_networks,
R.string.header_category_device,
R.string.header_category_personal,
R.string.header_category_system
};
//end by liweiping 20140601
// Show only these settings for restricted users
private int[] SETTINGS_FOR_RESTRICTED = {
R.id.wifi_settings,
R.id.bluetooth_settings,
R.id.sound_settings,
R.id.display_settings,
R.id.security_settings,
R.id.account_settings,
R.id.about_settings
}; private boolean mEnableUserManagement = false; // TODO: Update Call Settings based on airplane mode state. protected HashMap<Integer, Integer> mHeaderIndexMap = new HashMap<Integer, Integer>(); private AuthenticatorHelper mAuthenticatorHelper;
private Header mLastHeader;
private boolean mListeningToAccountUpdates;
private boolean mBluetoothEnable;
private boolean mVoiceCapable; @Override
protected void onCreate(Bundle savedInstanceState) {
mBluetoothEnable = (SystemProperties.getInt("ro.tablet.bluetooth.enable", 1) != 0);
mBluetoothEnable = (SystemProperties.getInt("ro.tablet.bluetooth.enable", 1) != 0);
mVoiceCapable = getResources().getBoolean(com.android.internal.R.bool.config_voice_capable);
if (getIntent().getBooleanExtra(EXTRA_CLEAR_UI_OPTIONS, false)) {
getWindow().setUiOptions(0);
} if (android.provider.Settings.Secure.getInt(getContentResolver(), "multiuser_enabled", -1)
> 0) {
mEnableUserManagement = true;
} mAuthenticatorHelper = new AuthenticatorHelper();
mAuthenticatorHelper.updateAuthDescriptions(this);
mAuthenticatorHelper.onAccountsUpdated(this, null); getMetaData();
mInLocalHeaderSwitch = true;
super.onCreate(savedInstanceState);
mInLocalHeaderSwitch = false; //For LowCost case, define the list selector by itself
if (LC_RAM_SUPPORT)
getListView().setSelector(R.drawable.list_selector_holo_dark); if (!onIsHidingHeaders() && onIsMultiPane()) {
highlightHeader(mTopLevelHeaderId);
// Force the title so that it doesn't get overridden by a direct launch of
// a specific settings screen.
setTitle(R.string.settings_label);
} // Retrieve any saved state
if (savedInstanceState != null) {
mCurrentHeader = savedInstanceState.getParcelable(SAVE_KEY_CURRENT_HEADER);
mParentHeader = savedInstanceState.getParcelable(SAVE_KEY_PARENT_HEADER);
} // If the current header was saved, switch to it
if (savedInstanceState != null && mCurrentHeader != null) {
//switchToHeaderLocal(mCurrentHeader);
showBreadCrumbs(mCurrentHeader.title, null);
} if (mParentHeader != null) {
setParentTitle(mParentHeader.title, null, new OnClickListener() {
public void onClick(View v) {
switchToParent(mParentHeader.fragment);
}
});
} // Override up navigation for multi-pane, since we handle it in the fragment breadcrumbs
if (onIsMultiPane()) {
getActionBar().setDisplayHomeAsUpEnabled(false);
getActionBar().setHomeButtonEnabled(false);
}
//start by liweiping 20140601 for tab settings
mInflater = (LayoutInflater) this.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
if (UNIVERSEUI_SUPPORT) {
if (this.getClass().equals(Settings.class)) {
int index = getIntent().getIntExtra("tab_index", mCurrentTabIndex);
setupTab();
chooseTab(index);
}
}
//end by liweiping 20140601 for tab settings
} @Override
protected void onSaveInstanceState(Bundle outState) {
super.onSaveInstanceState(outState); // Save the current fragment, if it is the same as originally launched
if (mCurrentHeader != null) {
outState.putParcelable(SAVE_KEY_CURRENT_HEADER, mCurrentHeader);
}
if (mParentHeader != null) {
outState.putParcelable(SAVE_KEY_PARENT_HEADER, mParentHeader);
}
} @Override
public void onResume() {
super.onResume(); ListAdapter listAdapter = getListAdapter();
if (listAdapter instanceof HeaderAdapter) {
//start by liweiping 20140601 for tab settings
((HeaderAdapter) listAdapter).flushViewCache();
//end by liweiping 20140601 for tab settings
((HeaderAdapter) listAdapter).resume();
}
invalidateHeaders();
setActionBarStyle();//add by liweiping 20140210 for bug 173
} //start by liweiping 20140210 for bug 173
/* Set ActionBar with popup function */
protected void setActionBarStyle() {
ActionBar actionBar = getActionBar();
if (actionBar == null){
return;
}
if ( this.toString().contains("SubSettings") ) {
actionBar.setDisplayOptions(ActionBar.DISPLAY_HOME_AS_UP, ActionBar.DISPLAY_HOME_AS_UP);
actionBar.setDisplayHomeAsUpEnabled(true);
}
else {
actionBar.setDisplayOptions(ActionBar.DISPLAY_HOME_AS_UP
^ ActionBar.DISPLAY_HOME_AS_UP
, ActionBar.DISPLAY_HOME_AS_UP);
actionBar.setDisplayHomeAsUpEnabled(false);
}
}
//end by liweiping 20140210 @Override
public void onPause() {
super.onPause(); ListAdapter listAdapter = getListAdapter();
if (listAdapter instanceof HeaderAdapter) {
((HeaderAdapter) listAdapter).pause();
}
} private String getRunningActivityName() {
ActivityManager activityManager = (ActivityManager) getSystemService(Context.ACTIVITY_SERVICE);
return activityManager != null ? activityManager.getRunningTasks(1).get(0).topActivity
.getClassName() : null;
} // fix bug 185285 to avoid jump out of Settings when Locale changed on 20130819 begin
/*@Override
public void onBackPressed() {
if (!moveTaskToBack(false)) {
super.onBackPressed();
}
}*/
// fix bug 185285 to avoid jump out of Settings when Locale changed on 20130819 end @Override
public void onDestroy() {
super.onDestroy();
if (mListeningToAccountUpdates) {
AccountManager.get(this).removeOnAccountsUpdatedListener(this);
}
} private void switchToHeaderLocal(Header header) {
mInLocalHeaderSwitch = true;
switchToHeader(header);
mInLocalHeaderSwitch = false;
} @Override
public void switchToHeader(Header header) {
if (!mInLocalHeaderSwitch) {
mCurrentHeader = null;
mParentHeader = null;
}
super.switchToHeader(header);
} /**
* Switch to parent fragment and store the grand parent's info
* @param className name of the activity wrapper for the parent fragment.
*/
private void switchToParent(String className) {
final ComponentName cn = new ComponentName(this, className);
try {
final PackageManager pm = getPackageManager();
final ActivityInfo parentInfo = pm.getActivityInfo(cn, PackageManager.GET_META_DATA); if (parentInfo != null && parentInfo.metaData != null) {
String fragmentClass = parentInfo.metaData.getString(META_DATA_KEY_FRAGMENT_CLASS);
CharSequence fragmentTitle = parentInfo.loadLabel(pm);
Header parentHeader = new Header();
parentHeader.fragment = fragmentClass;
parentHeader.title = fragmentTitle;
mCurrentHeader = parentHeader; switchToHeaderLocal(parentHeader);
highlightHeader(mTopLevelHeaderId); mParentHeader = new Header();
mParentHeader.fragment
= parentInfo.metaData.getString(META_DATA_KEY_PARENT_FRAGMENT_CLASS);
mParentHeader.title = parentInfo.metaData.getString(META_DATA_KEY_PARENT_TITLE);
}
} catch (NameNotFoundException nnfe) {
Log.w(LOG_TAG, "Could not find parent activity : " + className);
}
} @Override
public void onNewIntent(Intent intent) {
super.onNewIntent(intent); // If it is not launched from history, then reset to top-level
if ((intent.getFlags() & Intent.FLAG_ACTIVITY_LAUNCHED_FROM_HISTORY) == 0
&& mFirstHeader != null && !onIsHidingHeaders() && onIsMultiPane()) {
switchToHeaderLocal(mFirstHeader);
}
} private void highlightHeader(int id) {
if (id != 0) {
Integer index = mHeaderIndexMap.get(id);
if (index != null) {
getListView().setItemChecked(index, true);
getListView().smoothScrollToPosition(index);
}
}
} @Override
public Intent getIntent() {
Intent superIntent = super.getIntent();
String startingFragment = getStartingFragmentClass(superIntent);
// This is called from super.onCreate, isMultiPane() is not yet reliable
// Do not use onIsHidingHeaders either, which relies itself on this method
if (startingFragment != null && !onIsMultiPane()) {
Intent modIntent = new Intent(superIntent);
modIntent.putExtra(EXTRA_SHOW_FRAGMENT, startingFragment);
Bundle args = superIntent.getExtras();
if (args != null) {
args = new Bundle(args);
} else {
args = new Bundle();
}
args.putParcelable("intent", superIntent);
modIntent.putExtra(EXTRA_SHOW_FRAGMENT_ARGUMENTS, superIntent.getExtras());
return modIntent;
}
return superIntent;
} /**
* Checks if the component name in the intent is different from the Settings class and
* returns the class name to load as a fragment.
*/
protected String getStartingFragmentClass(Intent intent) {
if (mFragmentClass != null) return mFragmentClass; String intentClass = intent.getComponent().getClassName();
if (intentClass.equals(getClass().getName())) return null; if ("com.android.settings.ManageApplications".equals(intentClass)
|| "com.android.settings.RunningServices".equals(intentClass)
|| "com.android.settings.applications.StorageUse".equals(intentClass)) {
// Old names of manage apps.
intentClass = com.android.settings.applications.ManageApplications.class.getName();
} return intentClass;
} /**
* Override initial header when an activity-alias is causing Settings to be launched
* for a specific fragment encoded in the android:name parameter.
*/
@Override
public Header onGetInitialHeader() {
String fragmentClass = getStartingFragmentClass(super.getIntent());
if (fragmentClass != null) {
Header header = new Header();
header.fragment = fragmentClass;
header.title = getTitle();
header.fragmentArguments = getIntent().getExtras();
mCurrentHeader = header;
return header;
} return mFirstHeader;
} @Override
public Intent onBuildStartFragmentIntent(String fragmentName, Bundle args,
int titleRes, int shortTitleRes) {
Intent intent = super.onBuildStartFragmentIntent(fragmentName, args,
titleRes, shortTitleRes); // some fragments want to avoid split actionbar
if (DataUsageSummary.class.getName().equals(fragmentName) ||
PowerUsageSummary.class.getName().equals(fragmentName) ||
AccountSyncSettings.class.getName().equals(fragmentName) ||
UserDictionarySettings.class.getName().equals(fragmentName) ||
Memory.class.getName().equals(fragmentName) ||
ManageApplications.class.getName().equals(fragmentName) ||
WirelessSettings.class.getName().equals(fragmentName) ||
SoundSettings.class.getName().equals(fragmentName) ||
PrivacySettings.class.getName().equals(fragmentName) ||
// SPRD: Modify 20130830 Spreadst of Bug 207441 clipboard can not be called
UserDictionaryAddWordFragment.class.getName().equals(fragmentName) ||
ManageAccountsSettings.class.getName().equals(fragmentName)) {
intent.putExtra(EXTRA_CLEAR_UI_OPTIONS, true);
}
//fix bug 226565 select englisg in userdictoryaddwors, rotate, the language change to chinses on 20131012 begin
intent.setClass(this, SubSettings.class);
/*
// fix bug 194403 to make the activity execute onCreate() method when orientation changed on 20130802 begin
Log.i(LOG_TAG,"fragmentName = " + fragmentName);
if (UserDictionaryAddWordFragment.class.getName().equals(fragmentName)) {
intent.setClass(this, LanguageSubSettings.class);
} else {
intent.setClass(this, SubSettings.class);
}
// fix bug 194403 to make the activity execute onCreate() method when orientation changed on 20130802 end
*/
// fix bug 226565 select englisg in userdictoryaddwors, rotate, the language change to chinses on 20131012 end
return intent;
} /**
* Populate the activity with the top-level headers.
*/
@Override
public void onBuildHeaders(List<Header> headers) {
//start by liweiping 20140601 for tab settings
if(UNIVERSEUI_SUPPORT){
ListAdapter listAdapter = getListAdapter();
loadHeadersFromResource(mHeadersCategory, headers);
if (listAdapter instanceof HeaderAdapter) {
((HeaderAdapter) listAdapter).flushViewCache();
((HeaderAdapter) listAdapter).resume();
((HeaderAdapter) listAdapter).notifyDataSetChanged();
}
//end by liweiping 20140601 for tab settings
}else{
loadHeadersFromResource(R.xml.settings_headers, headers);
} updateHeaderList(headers);
} private void updateHeaderList(List<Header> target) {
int i = 0;
boolean IsSupVoice = Settings.this.getResources().getBoolean(com.android.internal.R.bool.
config_voice_capable);
while (i < target.size()) {
Header header = target.get(i);
// Ids are integers, so downcasting
int id = (int) header.id;
if (id == R.id.dock_settings) {
if (!needsDockSettings())
target.remove(header);
} else if (id == R.id.operator_settings || id == R.id.manufacturer_settings) {
Utils.updateHeaderToSpecificActivityFromMetaDataOrRemove(this, target, header);
} else if (id == R.id.wifi_settings) {
// Remove WiFi Settings if WiFi service is not available.
// Start by changyan 2014.01.02
//if (!getPackageManager().hasSystemFeature(PackageManager.FEATURE_WIFI)) {
if (!SystemProperties.getBoolean("ro.device.support.wifi", true)) {
//End by changyan
target.remove(header);
}
} else if (id == R.id.bluetooth_settings) {
//Start by changyan 2014.01.03
// Remove Bluetooth Settings if Bluetooth service is not available.
//if ((!getPackageManager().hasSystemFeature(PackageManager.FEATURE_BLUETOOTH))
// || (!mBluetoothEnable)) {
if (!SystemProperties.getBoolean("ro.device.support.bt", true)) {
//End by changyan
target.remove(header);
}
} else if (id == R.id.data_usage_settings) {
// Remove data usage when kernel module not enabled
final INetworkManagementService netManager = INetworkManagementService.Stub
.asInterface(ServiceManager.getService(Context.NETWORKMANAGEMENT_SERVICE));
// fix bug 182580 to delete the data usage item of settings on 20130717 begin
boolean support_cmcc = SystemProperties.get("ro.operator").equals("cmcc");
try {
if (!netManager.isBandwidthControlEnabled() || support_cmcc) {
target.remove(header);
}
} catch (RemoteException e) {
// ignored
}
// fix bug 182580 to delete the data usage item of settings on 20130717 end
} else if (id == R.id.account_settings) {
int headerIndex = i + 1;
i = insertAccountsHeaders(target, headerIndex);
} else if (id == R.id.user_settings) {
if (!mEnableUserManagement
|| !UserId.MU_ENABLED || UserId.myUserId() != 0
|| !getResources().getBoolean(R.bool.enable_user_management)
|| Utils.isMonkeyRunning()) {
target.remove(header);
}
} else if (id == R.id.dual_sim_settings) {
if (!TelephonyManager.isMultiSim() || (!mVoiceCapable)) {
target.remove(header);
}
} else if (id == R.id.network_preference_settings) {
if (!CU_SUPPORT) {
target.remove(header);
}
}
else if (id == R.id.sound_settings && IsSupVoice)
{
target.remove(header);
}
else if (id == R.id.audio_profiles && !IsSupVoice)
{
target.remove(header);
} if (UserId.MU_ENABLED && UserId.myUserId() != 0
&& !ArrayUtils.contains(SETTINGS_FOR_RESTRICTED, id)) {
target.remove(header);
} // Increment if the current one wasn't removed by the Utils code.
if (target.get(i) == header) {
// Hold on to the first header, when we need to reset to the top-level
if (mFirstHeader == null &&
HeaderAdapter.getHeaderType(header) != HeaderAdapter.HEADER_TYPE_CATEGORY) {
mFirstHeader = header;
}
mHeaderIndexMap.put(id, i);
i++;
}
}
} private int insertAccountsHeaders(List<Header> target, int headerIndex) {
String[] accountTypes = mAuthenticatorHelper.getEnabledAccountTypes();
List<Header> accountHeaders = new ArrayList<Header>(accountTypes.length);
for (String accountType : accountTypes) {
if (accountType.startsWith("sprd")) {
continue;
}
CharSequence label = mAuthenticatorHelper.getLabelForType(this, accountType);
if (label == null) {
continue;
} Account[] accounts = AccountManager.get(this).getAccountsByType(accountType);
boolean skipToAccount = accounts.length == 1
&& !mAuthenticatorHelper.hasAccountPreferences(accountType);
Header accHeader = new Header();
accHeader.title = label;
if (accHeader.extras == null) {
accHeader.extras = new Bundle();
}
if (skipToAccount) {
accHeader.breadCrumbTitleRes = R.string.account_sync_settings_title;
accHeader.breadCrumbShortTitleRes = R.string.account_sync_settings_title;
accHeader.fragment = AccountSyncSettings.class.getName();
accHeader.fragmentArguments = new Bundle();
// Need this for the icon
accHeader.extras.putString(ManageAccountsSettings.KEY_ACCOUNT_TYPE, accountType);
accHeader.extras.putParcelable(AccountSyncSettings.ACCOUNT_KEY, accounts[0]);
accHeader.fragmentArguments.putParcelable(AccountSyncSettings.ACCOUNT_KEY,
accounts[0]);
} else {
accHeader.breadCrumbTitle = label;
accHeader.breadCrumbShortTitle = label;
accHeader.fragment = ManageAccountsSettings.class.getName();
accHeader.fragmentArguments = new Bundle();
accHeader.extras.putString(ManageAccountsSettings.KEY_ACCOUNT_TYPE, accountType);
accHeader.fragmentArguments.putString(ManageAccountsSettings.KEY_ACCOUNT_TYPE,
accountType);
if (!isMultiPane()) {
accHeader.fragmentArguments.putString(ManageAccountsSettings.KEY_ACCOUNT_LABEL,
label.toString());
}
}
accountHeaders.add(accHeader);
} // Sort by label
Collections.sort(accountHeaders, new Comparator<Header>() {
@Override
public int compare(Header h1, Header h2) {
return h1.title.toString().compareTo(h2.title.toString());
}
}); for (Header header : accountHeaders) {
target.add(headerIndex++, header);
}
if (!mListeningToAccountUpdates) {
AccountManager.get(this).addOnAccountsUpdatedListener(this, null, true);
mListeningToAccountUpdates = true;
}
return headerIndex;
} private boolean needsDockSettings() {
return getResources().getBoolean(R.bool.has_dock_settings);
} private void getMetaData() {
try {
ActivityInfo ai = getPackageManager().getActivityInfo(getComponentName(),
PackageManager.GET_META_DATA);
if (ai == null || ai.metaData == null) return;
mTopLevelHeaderId = ai.metaData.getInt(META_DATA_KEY_HEADER_ID);
mFragmentClass = ai.metaData.getString(META_DATA_KEY_FRAGMENT_CLASS); // Check if it has a parent specified and create a Header object
final int parentHeaderTitleRes = ai.metaData.getInt(META_DATA_KEY_PARENT_TITLE);
String parentFragmentClass = ai.metaData.getString(META_DATA_KEY_PARENT_FRAGMENT_CLASS);
if (parentFragmentClass != null) {
mParentHeader = new Header();
mParentHeader.fragment = parentFragmentClass;
if (parentHeaderTitleRes != 0) {
mParentHeader.title = getResources().getString(parentHeaderTitleRes);
}
}
} catch (NameNotFoundException nnfe) {
// No recovery
}
} @Override
public boolean hasNextButton() {
return super.hasNextButton();
} @Override
public Button getNextButton() {
return super.getNextButton();
} private static class HeaderAdapter extends ArrayAdapter<Header> {
static final int HEADER_TYPE_CATEGORY = 0;
static final int HEADER_TYPE_NORMAL = 1;
static final int HEADER_TYPE_SWITCH = 2;
private static final int HEADER_TYPE_COUNT = HEADER_TYPE_SWITCH + 1; private final WifiEnabler mWifiEnabler;
private final BluetoothEnabler mBluetoothEnabler;
private AuthenticatorHelper mAuthHelper; //start by liweiping 20140601 for tab settings
private View[] mViewCache;
private int mViewCacheSize = 0;
//end by liweiping 20140601 for tab settings private static class HeaderViewHolder {
ImageView icon;
TextView title;
TextView summary;
Switch switch_;
} private LayoutInflater mInflater; static int getHeaderType(Header header) {
if (header.fragment == null && header.intent == null) {
return HEADER_TYPE_CATEGORY;
} else if (header.id == R.id.wifi_settings || header.id == R.id.bluetooth_settings) {
return HEADER_TYPE_SWITCH;
} else {
return HEADER_TYPE_NORMAL;
}
} @Override
public int getItemViewType(int position) {
Header header = getItem(position);
return getHeaderType(header);
} @Override
public boolean areAllItemsEnabled() {
return false; // because of categories
} @Override
public boolean isEnabled(int position) {
return getItemViewType(position) != HEADER_TYPE_CATEGORY;
} @Override
public int getViewTypeCount() {
return HEADER_TYPE_COUNT;
} @Override
public boolean hasStableIds() {
return true;
} public HeaderAdapter(Context context, List<Header> objects,
AuthenticatorHelper authenticatorHelper) {
super(context, 0, objects); mAuthHelper = authenticatorHelper;
mInflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE); // Temp Switches provided as placeholder until the adapter replaces these with actual
// Switches inflated from their layouts. Must be done before adapter is set in super
mWifiEnabler = new WifiEnabler(context, new Switch(context));
mBluetoothEnabler = new BluetoothEnabler(context, new Switch(context));
//start by liweiping 20140601 for tab settings
mViewCacheSize = objects.size();
mViewCache = new View[mViewCacheSize];
//end by liweiping 20140601 for tab settings
} //start by liweiping 20140601 for tab settings
public boolean flushViewCache() {
int currentCount = getCount(); mViewCacheSize = currentCount;
mViewCache = null;
mViewCache = new View[mViewCacheSize];
return true;
}
//end by liweiping 20140601 for tab settings @Override
public View getView(int position, View convertView, ViewGroup parent) {
//start by liweiping 20140601 for tab settings
if (position >= mViewCacheSize) {
flushViewCache();
}
//end by liweiping 20140601 for tab settings HeaderViewHolder holder;
Header header = getItem(position);
int headerType = getHeaderType(header);
View view = null; convertView = mViewCache[position];//add by liweiping 20140601 for tab settings if (convertView == null) {
holder = new HeaderViewHolder();
switch (headerType) {
case HEADER_TYPE_CATEGORY:
view = new TextView(getContext(), null,
android.R.attr.listSeparatorTextViewStyle);
holder.title = (TextView) view;
break; case HEADER_TYPE_SWITCH:
view = mInflater.inflate(R.layout.preference_header_switch_item, parent,
false);
holder.icon = (ImageView) view.findViewById(R.id.icon);
holder.title = (TextView)
view.findViewById(com.android.internal.R.id.title);
holder.summary = (TextView)
view.findViewById(com.android.internal.R.id.summary);
holder.switch_ = (Switch) view.findViewById(R.id.switchWidget);
break; case HEADER_TYPE_NORMAL:
view = mInflater.inflate(
R.layout.preference_header_item, parent,
false);
holder.icon = (ImageView) view.findViewById(R.id.icon);
holder.title = (TextView)
view.findViewById(com.android.internal.R.id.title);
holder.summary = (TextView)
view.findViewById(com.android.internal.R.id.summary);
break;
}
view.setTag(holder); mViewCache[position] = view;//add by liweiping 20140601 for tab settings
} else {
view = convertView;
//start by liweiping 20140601 for tab settings
// holder = (HeaderViewHolder) view.getTag();
return view;
//end by liweiping 20140601 for tab settings
} // All view fields must be updated every time, because the view may be recycled
switch (headerType) {
case HEADER_TYPE_CATEGORY:
holder.title.setText(header.getTitle(getContext().getResources()));
break; case HEADER_TYPE_SWITCH:
// Would need a different treatment if the main menu had more switches
if (header.id == R.id.wifi_settings) {
mWifiEnabler.setSwitch(holder.switch_);
} else {
mBluetoothEnabler.setSwitch(holder.switch_);
}
// No break, fall through on purpose to update common fields //$FALL-THROUGH$
case HEADER_TYPE_NORMAL:
if (header.extras != null
&& header.extras.containsKey(ManageAccountsSettings.KEY_ACCOUNT_TYPE)) {
String accType = header.extras.getString(
ManageAccountsSettings.KEY_ACCOUNT_TYPE);
ViewGroup.LayoutParams lp = holder.icon.getLayoutParams();
lp.width = getContext().getResources().getDimensionPixelSize(
R.dimen.header_icon_width);
lp.height = lp.width;
holder.icon.setLayoutParams(lp);
Drawable icon = mAuthHelper.getDrawableForType(getContext(), accType);
holder.icon.setImageDrawable(icon);
} else {
holder.icon.setImageResource(header.iconRes);
}
holder.title.setText(header.getTitle(getContext().getResources()));
//fix bug 210641 the text of "backup and reset" not appropriate ,when os did not support backup on 2013.9.4 start
if(header.id == R.id.privacy_settings) {
if (getContext().getPackageManager().resolveContentProvider(GSETTINGS_PROVIDER, 0) == null) {
holder.title.setText(getContext().getResources().getText(R.string.master_clear_title));
}
}
//fix bug 210641 the text of "backup and reset" not appropriate ,when os did not support backup on 2013.9.4 end
CharSequence summary = header.getSummary(getContext().getResources());
if (!TextUtils.isEmpty(summary)) {
holder.summary.setVisibility(View.VISIBLE);
holder.summary.setText(summary);
} else {
holder.summary.setVisibility(View.GONE);
}
break;
}
//start by liweiping 20140601 for tab settings
if (header.fragment == null && header.intent == null) {
view.setBackgroundColor(android.R.color.transparent);
}else if(header.id == R.id.dual_sim_settings || header.id == R.id.audio_profiles || header.id == R.id.user_settings ||
header.id == R.id.location_settings || header.id == R.id.date_time_settings){
view.setBackgroundResource(com.android.internal.R.drawable.easy_pref_item_top);
}else if(header.id == R.id.wireless_settings || header.id == R.id.account_add || header.id == R.id.about_settings ||
header.id == R.id.application_settings){
view.setBackgroundResource(com.android.internal.R.drawable.easy_pref_item_bottom);
}else {
view.setBackgroundResource(com.android.internal.R.drawable.easy_pref_item_center);
}
//end by liweiping 20140601 for tab settings
return view;
} public void resume() {
mWifiEnabler.resume();
mBluetoothEnabler.resume();
} public void pause() {
mWifiEnabler.pause();
mBluetoothEnabler.pause();
}
} @Override
public void onHeaderClick(Header header, int position) {
boolean revert = false;
if (header.id == R.id.account_add) {
revert = true;
}
//start,added by topwise hehuadong in 2014.01.16
if (TopwiseProp.getDefaultSettingString("default_customize_about_device")!=null){
if (header != null && header.fragment != null && header.fragment.equals("com.android.settings.DeviceInfoSettings")){
header.fragment="com.android.settings.AboutDeviceSettings";
}
}
//end,added by topwise hehuadong in 2014.01.16
super.onHeaderClick(header, position); if (revert && mLastHeader != null) {
// fix bug 200478 to avoid list scroll when account_add item selected on 20130810 begin
//highlightHeader((int) mLastHeader.id);
// fix bug 200478 to avoid list scroll when account_add item selected on 20130810 end
} else {
mLastHeader = header;
}
} @Override
public boolean onPreferenceStartFragment(PreferenceFragment caller, Preference pref) {
// Override the fragment title for Wallpaper settings
int titleRes = pref.getTitleRes();
if (pref.getFragment().equals(WallpaperTypeSettings.class.getName())) {
titleRes = R.string.wallpaper_settings_fragment_title;
}
startPreferencePanel(pref.getFragment(), pref.getExtras(), titleRes, pref.getTitle(),
null, 0);
return true;
} public boolean shouldUpRecreateTask(Intent targetIntent) {
return super.shouldUpRecreateTask(new Intent(this, Settings.class));
} @Override
public void setListAdapter(ListAdapter adapter) {
if (adapter == null) {
super.setListAdapter(null);
} else {
super.setListAdapter(new HeaderAdapter(this, getHeaders(), mAuthenticatorHelper));
}
} @Override
public void onAccountsUpdated(Account[] accounts) {
mAuthenticatorHelper.onAccountsUpdated(this, accounts);
invalidateHeaders();
} /*
* Settings subclasses for launching independently.
*/
public static class BluetoothSettingsActivity extends Settings { /* empty */ }
public static class WirelessSettingsActivity extends Settings { /* empty */ }
public static class TetherSettingsActivity extends Settings { /* empty */ }
public static class VpnSettingsActivity extends Settings { /* empty */ }
public static class DateTimeSettingsActivity extends Settings { /* empty */ }
public static class StorageSettingsActivity extends Settings { /* empty */ }
public static class WifiSettingsActivity extends Settings { /* empty */ }
public static class WifiP2pSettingsActivity extends Settings { /* empty */ }
public static class InputMethodAndLanguageSettingsActivity extends Settings { /* empty */ }
public static class KeyboardLayoutPickerActivity extends Settings { /* empty */ }
public static class InputMethodAndSubtypeEnablerActivity extends Settings { /* empty */ }
public static class SpellCheckersSettingsActivity extends Settings { /* empty */ }
public static class LocalePickerActivity extends Settings { /* empty */ }
public static class UserDictionarySettingsActivity extends Settings { /* empty */ }
public static class SoundSettingsActivity extends Settings { /* empty */ }
public static class DisplaySettingsActivity extends Settings { /* empty */ }
public static class DeviceInfoSettingsActivity extends Settings { /* empty */ }
public static class ApplicationSettingsActivity extends Settings { /* empty */ }
public static class ManageApplicationsActivity extends Settings { /* empty */ }
public static class StorageUseActivity extends Settings { /* empty */ }
public static class DevelopmentSettingsActivity extends Settings { /* empty */ }
public static class AccessibilitySettingsActivity extends Settings { /* empty */ }
public static class SecuritySettingsActivity extends Settings { /* empty */ }
public static class LocationSettingsActivity extends Settings { /* empty */ }
public static class PrivacySettingsActivity extends Settings { /* empty */ }
public static class DockSettingsActivity extends Settings { /* empty */ }
public static class RunningServicesActivity extends Settings { /* empty */ }
public static class ManageAccountsSettingsActivity extends Settings { /* empty */ }
public static class PowerUsageSummaryActivity extends Settings { /* empty */ }
public static class AccountSyncSettingsActivity extends Settings { /* empty */ }
public static class AccountSyncSettingsInAddAccountActivity extends Settings { /* empty */ }
public static class CryptKeeperSettingsActivity extends Settings { /* empty */ }
public static class DeviceAdminSettingsActivity extends Settings { /* empty */ }
public static class DataUsageSummaryActivity extends Settings { /* empty */ }
public static class AdvancedWifiSettingsActivity extends Settings { /* empty */ }
public static class TextToSpeechSettingsActivity extends Settings { /* empty */ }
public static class AndroidBeamSettingsActivity extends Settings { /* empty */ } //start by liweiping 20140601 for tab settings
private void setupTab() {
mActionBar = getActionBar();
mActionBar.setAlternativeTabStyle(true);
mActionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);
int tabHeight = (int) getResources().getDimensionPixelSize(R.dimen.universe_ui_tab_height);
mActionBar.setTabHeight(tabHeight); setupNetWork();
setupDevice();
setupPersonal();
setupMore();
setCurrentTab(mCurrentTabIndex);
} private void setupNetWork() {
final Tab tab = mActionBar.newTab();
LayoutInflater inflater = getLayoutInflater();
View view = inflater.inflate(R.layout.tab_widget_view, null);
ImageView dialView = (ImageView) view.findViewById(R.id.tab_icon);
if (dialView != null) {
dialView.setImageResource(R.drawable.ic_tab_wireless);
}
TextView dialText = (TextView) view.findViewById(R.id.tab_text);
if (dialText != null) {
dialText.setText(R.string.header_category_wireless_networks);
}
tab.setCustomView(view);
tab.setTag(R.xml.settings_headers_wireless_networks);
tab.setTabListener(mTabListener);
mActionBar.addTab(tab);
}
private void setupDevice() {
final Tab tab = mActionBar.newTab();
LayoutInflater inflater = getLayoutInflater();
View view = inflater.inflate(R.layout.tab_widget_view, null);
ImageView dialView = (ImageView) view.findViewById(R.id.tab_icon);
if (dialView != null) {
dialView.setImageResource(R.drawable.ic_tab_device);
}
TextView dialText = (TextView) view.findViewById(R.id.tab_text);
if (dialText != null) {
dialText.setText(R.string.header_category_device);
}
tab.setCustomView(view);
tab.setTag(R.xml.settings_headers_device);
tab.setTabListener(mTabListener);
mActionBar.addTab(tab);
}
private void setupPersonal() {
final Tab tab = mActionBar.newTab();
LayoutInflater inflater = getLayoutInflater();
View view = inflater.inflate(R.layout.tab_widget_view, null);
ImageView dialView = (ImageView) view.findViewById(R.id.tab_icon);
if (dialView != null) {
dialView.setImageResource(R.drawable.ic_tab_personal);
}
TextView dialText = (TextView) view.findViewById(R.id.tab_text);
if (dialText != null) {
dialText.setText(R.string.header_category_personal);
}
tab.setCustomView(view);
tab.setTag(R.xml.settings_headers_personal);
tab.setTabListener(mTabListener);
mActionBar.addTab(tab);
}
private void setupMore() {
final Tab tab = mActionBar.newTab();
LayoutInflater inflater = getLayoutInflater();
View view = inflater.inflate(R.layout.tab_widget_view, null);
ImageView dialView = (ImageView) view.findViewById(R.id.tab_icon);
if (dialView != null) {
dialView.setImageResource(R.drawable.ic_tab_system);
}
TextView dialText = (TextView) view.findViewById(R.id.tab_text);
if (dialText != null) {
dialText.setText(R.string.header_category_system);
}
tab.setCustomView(view);
tab.setTag(R.xml.settings_headers_system);
tab.setTabListener(mTabListener);
mActionBar.addTab(tab);
} public void setCurrentTab(int position) {
mCurrentTabIndex = position;
if ((mActionBar.getNavigationMode() == ActionBar.NAVIGATION_MODE_TABS)
&& (mCurrentTabIndex != mActionBar.getSelectedNavigationIndex())) {
mActionBar.setSelectedNavigationItem(mCurrentTabIndex);
}
} private final TabListener mTabListener = new TabListener() {
@Override
public void onTabUnselected(Tab tab, FragmentTransaction ft) {
} @Override
public void onTabSelected(Tab tab, FragmentTransaction ft) {
int tag = (Integer) tab.getTag(); if (mHeadersCategory != tag) {
mCurrentTabIndex = tab.getPosition();
Log.i("TabSettings", "mCurrentTab = " + mCurrentTabIndex);
getIntent().putExtra("tab_index", mCurrentTabIndex);
mHeadersCategory = tag; invalidateHeaders();
}
} @Override
public void onTabReselected(Tab tab, FragmentTransaction ft) {
}
}; private void chooseTab(int index) {
getActionBar().setSelectedNavigationItem(index);
mCurrentTabIndex = index;
getIntent().putExtra("tab_index", mCurrentTabIndex);
}
//end by liweiping 20140601 for tab settings/
}
Android4.0设置界面改动总结(三)的更多相关文章
- Android4.0设置界面改动总结(二)
今年1月份的时候.有和大家分享给予Android4.0+系统设置的改动:Android4.0设置界面改动总结 时隔半年.回头看看那个时候的改动.事实上是有非常多问题的,比方说: ①.圆角Item会影响 ...
- Android常用控件之Fragment仿Android4.0设置界面
Fragment是Android3.0新增的概念,是碎片的意思,它和Activity很相像,用来在一个Activity中描述一些行为或部分用户界面:使用多个Fragment可以在一个单独的Activi ...
- android4.0默认界面旋转180
不巧新拿的android4.0默认启动画面和正常显示旋转了180度,即为倒立的.原来是屏输出为倒的,查找得知可以做旋转: 步骤: 一:先把这个加上 然后加上属性ro.sf.hwrotation = 1 ...
- Android4.0设置接口变更摘要(四)
为了与你之前,你已经设置了共享Tab风格和Item实现圆角.希望能给有须要的朋友一点点帮助,今天再和大家分享一下用ViewPager实现设置分页,小米和OPPO就是这种设置,先来看看效果图: wate ...
- Android4.0图库Gallery2代码分析(二) 数据管理和数据加载
Android4.0图库Gallery2代码分析(二) 数据管理和数据加载 2012-09-07 11:19 8152人阅读 评论(12) 收藏 举报 代码分析android相册优化工作 Androi ...
- Android4.0+锁屏程序开发——设置锁屏页面篇
[如何开发一个锁屏应用] 想要开发一个锁屏应用,似乎很难,其实并没有想象中那么难. 从本质上来说,锁屏界面也只是一个Activity而已,只是这个界面比较特殊,在我们点亮屏幕的时候,这个界面就会出现. ...
- iOS开发——开发必备OC篇&UITableView设置界面完整封装(三)
UITableView设置界面完整封装(三) 简单MVC实现UITableView设置界面之界面跳转 创建一个需要调整的对应的控制器 在需要调整的类型模型中创建对应的属性用来实现调整类型控制器的设置 ...
- Android4.0的Alertdialog对话框,设置点击其他位置不消失
Android4.0以上AlertDialog,包括其他自定义的dialog,在触摸对话框边缘外部,对话框消失. 可以设置这么一条属性,当然必须先AlertDialog.Builder.create( ...
- 深入浅出 - Android系统移植与平台开发(三)- 编译并运行Android4.0模拟器
作者:唐老师,华清远见嵌入式学院讲师. 1. 编译Android模拟器 在Ubuntu下,我们可以在源码里编译出自己的模拟器及SDK等编译工具,当然这个和在windows里下载的看起来没有什么区别 ...
随机推荐
- android4.0 HttpClient 以后不能在主线程发起网络请求
android4.0以后不能在主线程发起网络请求,该异步网络请求. new Thread(new Runnable() { @Override public void run() { // TODO ...
- 你想建设一个能承受500万PV/每天的网站吗?如果计算呢?(转)
作者:赵磊 博客:http://elf8848.iteye.com 你想建设一个能承受500万PV/每天的网站吗? 500万PV是什么概念?服务器每秒要处理多少个请求才能应对?如果计算呢? PV是什么 ...
- Linux下对字符串进行MD5加密
Linux下对字符串进行MD5加密 比如要用MD5在linux下加密字符串“test",可以使用命令:$ echo -n test|md5sum098f6bcd4621d373cade4e8 ...
- SQL server指定随机数范围
declare @randnum int=0declare @startnum int =0declare @endnum int=0 set @startnum = 150 set @endnum ...
- 将Controller中的数据传递到View中显示
如何将Controller 中的数据传送到View 步骤: (1)要有数据,如果要用到对象可以在Model 中定义对应的类 (2)要有装数据的容器: System.Text.StringBuilder ...
- javascript小知识1 this的用法
函数的应用: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UT ...
- 2016.09.01 html5兼容
<!--[if lt IE 9]> <script src="http://apps.bdimg.com/libs/html5shiv/3.7/html5shiv.min ...
- Cannot access empty property
致命错误:不能够进入此空值,位于E:\sunlion\web\down\class\db_sql.php 代码 <?php Class TestClass1{ var $class2; publ ...
- html系列教程--DOCTYPE a area
<!DOCTYPE>标签:<!DOCTYPE> 声明不是 HTML 标签:它是指示 web 浏览器关于页面使用哪个 HTML 版本进行编写的指令.在 HTML 4.01 中,& ...
- UCML快速开发平台学习1-UCML环境安装
最近公司项目时间紧张,经过各位大神的PK,决定用多年前话10W采购过来,一直被雪藏的UCML来开发.为啥花了钱买回来不用我就不吐槽了. UCML安装 翻看安装手册,貌似不 ...