1. 程式人生 > >Android5.0 設定wifi頁面的修改

Android5.0 設定wifi頁面的修改

先上圖,Android5.0原始碼中的Wifi頁面
5.0原始碼wifi設定介面
這是修改後的介面
修改後WIFi設定介面,但是LOGO給我遮蔽掉了
wifi設定頁面的原始碼是WiFiSettings.java 類,該類實際就是一個PreferenceFragment的子類,下面是原始碼,工作原理在註釋中說明

/*
 * Copyright (C) 2010 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.guojiu.settings.wifi; import static android.net.wifi.WifiConfiguration.INVALID_NETWORK_ID; import static android.os.UserManager.DISALLOW_CONFIG_WIFI; import android.app.Activity; import android.app.ActivityManager; import android.app.Dialog; import android.app.PendingIntent.OnFinished; import
android.content.BroadcastReceiver; import android.content.Context; import android.content.DialogInterface; import android.content.Intent; import android.content.IntentFilter; import android.content.SharedPreferences; import android.content.res.Resources; import android.content.res.TypedArray; import
android.graphics.Color; import android.location.LocationManager; import android.net.ConnectivityManager; import android.net.NetworkInfo; import android.net.NetworkInfo.DetailedState; import android.net.NetworkScoreManager; import android.net.NetworkScorerAppManager; import android.net.NetworkScorerAppManager.NetworkScorerAppData; import android.net.wifi.ScanResult; import android.net.wifi.WifiConfiguration; import android.net.wifi.WifiInfo; import android.net.wifi.WifiManager; import android.net.wifi.WpsInfo; import android.os.Build; import android.os.Bundle; import android.os.Handler; import android.os.Message; import android.os.UserHandle; import android.preference.Preference; import android.preference.PreferenceScreen; import android.util.DisplayMetrics; import android.util.Log; import android.view.ContextMenu; import android.view.ContextMenu.ContextMenuInfo; import android.view.Gravity; import android.view.LayoutInflater; import android.view.Menu; import android.view.MenuInflater; import android.view.MenuItem; import android.view.View; import android.view.ViewGroup; import android.view.View.OnClickListener; import android.widget.AdapterView.AdapterContextMenuInfo; import android.widget.CompoundButton.OnCheckedChangeListener; import android.widget.FrameLayout.LayoutParams; import android.widget.Button; import android.widget.CompoundButton; import android.widget.FrameLayout; import android.widget.RelativeLayout; import android.widget.Switch; import android.widget.TextView; import android.widget.Toast; import android.nfc.NfcManager; import com.guojiu.settings.R; import com.guojiu.settings.RestrictedSettingsFragment; import com.guojiu.settings.SettingsActivity; import com.guojiu.settings.search.BaseSearchIndexProvider; import com.guojiu.settings.search.Indexable; import com.guojiu.settings.search.SearchIndexableRaw; import java.util.ArrayList; import java.util.Collection; import java.util.Collections; import java.util.HashMap; import java.util.List; import java.util.concurrent.atomic.AtomicBoolean; /** * Two types of UI are provided here. * * The first is for "usual Settings", appearing as any other Setup fragment. * * The second is for Setup Wizard, with a simplified interface that hides the action bar * and menus. */ public class WifiSettings extends RestrictedSettingsFragment implements DialogInterface.OnClickListener, Indexable { private static final String TAG = "WifiSettings"; private static final int REQUEST_ENABLE_WIFI_ASSISTANT = 1; /* package */ static final int MENU_ID_WPS_PBC = Menu.FIRST; private static final int MENU_ID_WPS_PIN = Menu.FIRST + 1; private static final int MENU_ID_SAVED_NETWORK = Menu.FIRST + 2; /* package */ static final int MENU_ID_ADD_NETWORK = Menu.FIRST + 3; private static final int MENU_ID_ADVANCED = Menu.FIRST + 4; private static final int MENU_ID_SCAN = Menu.FIRST + 5; private static final int MENU_ID_CONNECT = Menu.FIRST + 6; private static final int MENU_ID_FORGET = Menu.FIRST + 7; private static final int MENU_ID_MODIFY = Menu.FIRST + 8; private static final int MENU_ID_WRITE_NFC = Menu.FIRST + 9; private static final String KEY_ASSISTANT_DISMISS_PLATFORM = "assistant_dismiss_platform"; public static final int WIFI_DIALOG_ID = 1; /* package */ static final int WPS_PBC_DIALOG_ID = 2; private static final int WPS_PIN_DIALOG_ID = 3; private static final int WRITE_NFC_DIALOG_ID = 6; // Combo scans can take 5-6s to complete - set to 10s. private static final int WIFI_RESCAN_INTERVAL_MS = 10 * 1000; // Instance state keys private static final String SAVE_DIALOG_EDIT_MODE = "edit_mode"; private static final String SAVE_DIALOG_ACCESS_POINT_STATE = "wifi_ap_state"; private static boolean savedNetworksExist; private final IntentFilter mFilter; private final BroadcastReceiver mReceiver; private final Scanner mScanner; /* package */ WifiManager mWifiManager; private WifiManager.ActionListener mConnectListener; private WifiManager.ActionListener mSaveListener; private WifiManager.ActionListener mForgetListener; private WifiEnabler mWifiEnabler; // An access point being editted is stored here. private AccessPoint mSelectedAccessPoint; private DetailedState mLastState; private WifiInfo mLastInfo; private final AtomicBoolean mConnected = new AtomicBoolean(false); private WifiDialog mDialog; private WriteWifiConfigToNfcDialog mWifiToNfcDialog; private TextView mEmptyView; // this boolean extra specifies whether to disable the Next button when not connected. Used by // account creation outside of setup wizard. private static final String EXTRA_ENABLE_NEXT_ON_CONNECT = "wifi_enable_next_on_connect"; // should Next button only be enabled when we have a connection? private boolean mEnableNextOnConnection; // Save the dialog details private boolean mDlgEdit; private AccessPoint mDlgAccessPoint; private Bundle mAccessPointSavedState; private View mWifiAssistantCard; private NetworkScorerAppData mWifiAssistantApp; /** verbose logging flag. this flag is set thru developer debugging options * and used so as to assist with in-the-field WiFi connectivity debugging */ public static int mVerboseLogging = 0; /*add by guojiu 定義相關變數*/ public DisplayMetrics dm; public int w_screen ; public int h_screen ; public int h_viewscreen ; public int h_buttonscreen ; public Switch wifiSwitch; /*add by guojiu*/ /* End of "used in Wifi Setup context" */ /** A restricted multimap for use in constructAccessPoints */ private static class Multimap<K,V> { private final HashMap<K,List<V>> store = new HashMap<K,List<V>>(); /** retrieve a non-null list of values with key K */ List<V> getAll(K key) { List<V> values = store.get(key); return values != null ? values : Collections.<V>emptyList(); } void put(K key, V val) { List<V> curVals = store.get(key); if (curVals == null) { curVals = new ArrayList<V>(3); store.put(key, curVals); } curVals.add(val); } } private static class Scanner extends Handler { private int mRetry = 0; private WifiSettings mWifiSettings = null; Scanner(WifiSettings wifiSettings) { mWifiSettings = wifiSettings; } void resume() { if (!hasMessages(0)) { sendEmptyMessage(0); } } void forceScan() { removeMessages(0); sendEmptyMessage(0); } void pause() { mRetry = 0; removeMessages(0); } @Override public void handleMessage(Message message) { if (mWifiSettings.mWifiManager.startScan()) { mRetry = 0; } else if (++mRetry >= 3) { mRetry = 0; Activity activity = mWifiSettings.getActivity(); if (activity != null) { Toast.makeText(activity, R.string.wifi_fail_to_scan, Toast.LENGTH_LONG).show(); } return; } sendEmptyMessageDelayed(0, WIFI_RESCAN_INTERVAL_MS); } } //add by guojiu 重寫onCreate()方法獲得螢幕的寬度和高度的畫素 @Override public void onCreate(Bundle icicle) { // TODO 自動生成的方法存根 super.onCreate(icicle); dm =getResources().getDisplayMetrics(); w_screen = dm.widthPixels; h_screen = dm.heightPixels; h_viewscreen = (int) (h_screen*0.8); h_buttonscreen = h_screen - h_viewscreen; } //add by guojiu 重寫onCreateView方法修改View內容中的padding @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View rootView = super.onCreateView(inflater, container, savedInstanceState); ViewGroup.LayoutParams lpLayoutParams = rootView.getLayoutParams(); // lpLayoutParams.height = h_viewscreen; rootView.setPadding(50, 150, 50, 150); rootView.setBackgroundResource(R.drawable.beijing); rootView.setLayoutParams(lpLayoutParams); return rootView; } //add by guojiu public WifiSettings() { super(DISALLOW_CONFIG_WIFI); mFilter = new IntentFilter(); mFilter.addAction(WifiManager.WIFI_STATE_CHANGED_ACTION); mFilter.addAction(WifiManager.SCAN_RESULTS_AVAILABLE_ACTION); mFilter.addAction(WifiManager.NETWORK_IDS_CHANGED_ACTION); mFilter.addAction(WifiManager.SUPPLICANT_STATE_CHANGED_ACTION); mFilter.addAction(WifiManager.CONFIGURED_NETWORKS_CHANGED_ACTION); mFilter.addAction(WifiManager.LINK_CONFIGURATION_CHANGED_ACTION); mFilter.addAction(WifiManager.NETWORK_STATE_CHANGED_ACTION); mFilter.addAction(WifiManager.RSSI_CHANGED_ACTION); mReceiver = new BroadcastReceiver() { @Override public void onReceive(Context context, Intent intent) { handleEvent(intent); } }; mScanner = new Scanner(this); } @Override public void onActivityCreated(Bundle savedInstanceState) { super.onActivityCreated(savedInstanceState); mWifiManager = (WifiManager) getSystemService(Context.WIFI_SERVICE); mConnectListener = new WifiManager.ActionListener() { @Override public void onSuccess() { } @Override public void onFailure(int reason) { Activity activity = getActivity(); if (activity != null) { Toast.makeText(activity, R.string.wifi_failed_connect_message, Toast.LENGTH_SHORT).show(); } } }; mSaveListener = new WifiManager.ActionListener() { @Override public void onSuccess() { } @Override public void onFailure(int reason) { Activity activity = getActivity(); if (activity != null) { Toast.makeText(activity, R.string.wifi_failed_save_message, Toast.LENGTH_SHORT).show(); } } }; mForgetListener = new WifiManager.ActionListener() { @Override public void onSuccess() { } @Override public void onFailure(int reason) { Activity activity = getActivity(); if (activity != null) { Toast.makeText(activity, R.string.wifi_failed_forget_message, Toast.LENGTH_SHORT).show(); } } }; if (savedInstanceState != null) { mDlgEdit = savedInstanceState.getBoolean(SAVE_DIALOG_EDIT_MODE); if (savedInstanceState.containsKey(SAVE_DIALOG_ACCESS_POINT_STATE)) { mAccessPointSavedState = savedInstanceState.getBundle(SAVE_DIALOG_ACCESS_POINT_STATE); } } // if we're supposed to enable/disable the Next button based on our current connection // state, start it off in the right state Intent intent = getActivity().getIntent(); mEnableNextOnConnection = intent.getBooleanExtra(EXTRA_ENABLE_NEXT_ON_CONNECT, false); if (mEnableNextOnConnection) { if (hasNextButton()) { final ConnectivityManager connectivity = (ConnectivityManager) getActivity().getSystemService(Context.CONNECTIVITY_SERVICE); if (connectivity != null) { NetworkInfo info = connectivity.getNetworkInfo( ConnectivityManager.TYPE_WIFI); changeNextButtonState(info.isConnected()); } } } addPreferencesFromResource(R.xml.wifi_settings); //add by guojiu //titleLayout 動態新增一個RelativeLayout,裡面有放入我們的LoGo、 WLAN標題、還有Switch開光控制wifi開啟/關閉 RelativeLayout titleLayout = new RelativeLayout(getActivity()); titleLayout.setPadding(10, 10, 10, 10); RelativeLayout.LayoutParams layoutParams = new RelativeLayout. LayoutParams(RelativeLayout.LayoutParams.MATCH_PARENT,200); //logoButton RelativeLayout.LayoutParams logopParams = new RelativeLayout.LayoutParams (ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT); Button logoButton = new Button(getActivity()); logoButton.setBackgroundResource(R.drawable.flst_logo_button); logoButton.setId(1); titleLayout.addView(logoButton, logopParams ); //titleTextView RelativeLayout.LayoutParams titleParams = new RelativeLayout.LayoutParams (ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT); titleParams.addRule(RelativeLayout.CENTER_HORIZONTAL, RelativeLayout.TRUE); TextView titleTextView = new TextView(getActivity()); titleTextView.setId(2); titleTextView.setTextSize(35); titleTextView.setText("WLAN") ; titleLayout.addView(titleTextView,titleParams); //wifiSwitch wifiSwitch = new Switch(getActivity()); wifiSwitch.setId(3); wifiSwitch.setTextColor(Color.parseColor("#FFFFFF")); wifiSwitch.setSwitchPadding(250); RelativeLayout.LayoutParams switchParams = new RelativeLayout.LayoutParams (ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT); switchParams.setMargins(10, 10, 10, 10); switchParams.addRule(RelativeLayout.BELOW, 1); switchParams.addRule(RelativeLayout.RIGHT_OF, 1); titleLayout.addView(wifiSwitch,switchParams); //addContenView方法與setContenView方法是有區別的,addContenView不會覆蓋, //直接載入到頁面去 getActivity().addContentView(titleLayout, layoutParams); wifiSwitch.setOnCheckedChangeListener(new OnCheckedChangeListener() { @Override public void onCheckedChanged(CompoundButton arg0, boolean arg1) { // TODO 自動生成的方法存根 if (arg1) { //控制WIFI開啟 wifiSwitch.setText(R.string.switch_on_text); mWifiManager.setWifiEnabled(arg1); Toast.makeText(getActivity(), "true", Toast.LENGTH_LONG).show(); } else { //控制WIFI關閉 wifiSwitch.setText(R.string.switch_off_text); mWifiManager.setWifiEnabled(arg1); Toast.makeText(getActivity(), "false", Toast.LENGTH_LONG).show(); } } }); /*add by guojiu 在底部加入返回按鈕*/ //returnlayout FrameLayout.LayoutParams returnLayoutparams = new FrameLayout. LayoutParams(LayoutParams.MATCH_PARENT, 100); returnLayoutparams.gravity = Gravity.BOTTOM|Gravity.RIGHT; RelativeLayout returnLayout = new RelativeLayout(getActivity()); returnLayout.setPadding(50, 10, 50, 0); returnLayout.setBackgroundResource(android.R.color.transparent); //returnbutton FrameLayout.LayoutParams returnButtonparams = new FrameLayout.LayoutParams (LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT); final Button returnbutton = new Button(getActivity()); returnbutton.setBackgroundResource(R.drawable.flst_return_button); returnbutton.setLayoutParams(returnButtonparams); returnLayout.addView(returnbutton); getActivity().addContentView(returnLayout, returnLayoutparams); returnbutton.setOnClickListener(new OnClickListener() { @Override public void onClick(View arg0) { // TODO 自動生成的方法存根 Toast.makeText(getActivity(), "返回", Toast.LENGTH_LONG).show(); finish(); } }); /*add by guojiu*/ prepareWifiAssistantCard(); mEmptyView = initEmptyView(); registerForContextMenu(getListView()); setHasOptionsMenu(true); } @Override public void onActivityResult(int requestCode, int resultCode, Intent resultData) { if (requestCode == REQUEST_ENABLE_WIFI_ASSISTANT) { if (resultCode == Activity.RESULT_OK) { disableWifiAssistantCardUntilPlatformUpgrade(); getListView().removeHeaderView(mWifiAssistantCard); mWifiAssistantApp = null; } } else { super.onActivityResult(requestCode, resultCode, resultData); } } @Override public void onDestroyView() { super.onDestroyView(); if (mWifiEnabler != null) { mWifiEnabler.teardownSwitchBar(); } } //add by guojiu 這裡是為了可以隨時退出Wifi頁面 @Override public void finish() { // TODO 自動生成的方法存根 super.finish(); } @Override public void onStart() { super.onStart(); // On/off switch is hidden for Setup Wizard (returns null) mWifiEnabler = createWifiEnabler(); //add by guojiu 這裡吧系統原來的開始/關閉按鈕隱藏了,用我們自己的Switch控制 mWifiEnabler.teardownSwitchBar(); } /** * @return new WifiEnabler or null (as overridden by WifiSettingsForSetupWizard) */ /* package */ WifiEnabler createWifiEnabler() { final SettingsActivity activity = (SettingsActivity) getActivity(); return new WifiEnabler(activity, activity.getSwitchBar()); } @Override public void onResume() { final Activity activity = getActivity(); super.onResume(); if (mWifiEnabler != null) { mWifiEnabler.resume(activity); } activity.registerReceiver(mReceiver, mFilter); updateAccessPoints(); } @Override public void onPause() { super.onPause(); if (mWifiEnabler != null) { mWifiEnabler.pause(); } getActivity().unregisterReceiver(mReceiver); mScanner.pause(); } @Override public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) { // If the user is not allowed to configure wifi, do not show the menu. if (isUiRestricted()) return; addOptionsMenuItems(menu); super.onCreateOptionsMenu(menu, inflater); } /** * @param menu */ void addOptionsMenuItems(Menu menu) { final boolean wifiIsEnabled = mWifiManager.isWifiEnabled(); TypedArray ta = getActivity().getTheme().obtainStyledAttributes( new int[] {R.attr.ic_menu_add, R.attr.ic_wps}); menu.add(Menu.NONE, MENU_ID_ADD_NETWORK, 0, R.string.wifi_add_network) .setIcon(ta.getDrawable(0)) .setEnabled(wifiIsEnabled) .setShowAsAction(MenuItem.SHOW_AS_ACTION_NEVER); if (savedNetworksExist) { menu.add(Menu.NONE, MENU_ID_SAVED_NETWORK, 0, R.string.wifi_saved_access_points_label) .setIcon(ta.getDrawable(0)) .setEnabled(wifiIsEnabled) .setShowAsAction(MenuItem.SHOW_AS_ACTION_NEVER); } menu.add(Menu.NONE, MENU_ID_SCAN, 0, R.string.menu_stats_refresh) .setEnabled(wifiIsEnabled) .setShowAsAction(MenuItem.SHOW_AS_ACTION_NEVER); menu.add(Menu.NONE, MENU_ID_ADVANCED, 0, R.string.wifi_menu_advanced) .setShowAsAction(MenuItem.SHOW_AS_ACTION_NEVER); ta.recycle(); } @Override public void onSaveInstanceState(Bundle outState) { super.onSaveInstanceState(outState); // If the dialog is showing, save its state. if (mDialog != null && mDialog.isShowing()) { outState.putBoolean(SAVE_DIALOG_EDIT_MODE, mDlgEdit); if (mDlgAccessPoint != null) { mAccessPointSavedState = new Bundle(); mDlgAccessPoint.saveWifiState(mAccessPointSavedState); outState.putBundle(SAVE_DIALOG_ACCESS_POINT_STATE, mAccessPointSavedState); } } } @Override public boolean onOptionsItemSelected(MenuItem item) { // If the user is not allowed to configure wifi, do not handle menu selections. if (isUiRestricted()) return false; switch (item.getItemId()) { case MENU_ID_WPS_PBC: showDialog(WPS_PBC_DIALOG_ID); return true; /* case MENU_ID_P2P: if (getActivity() instanceof SettingsActivity) { ((SettingsActivity) getActivity()).startPreferencePanel( WifiP2pSettings.class.getCanonicalName(), null, R.string.wifi_p2p_settings_title, null, this, 0); } else { startFragment(this, WifiP2pSettings.class.getCanonicalName(), R.string.wifi_p2p_settings_title, -1, null); } return true; */ case MENU_ID_WPS_PIN: showDialog(WPS_PIN_DIALOG_ID); return true; case MENU_ID_SCAN: if (mWifiManager.isWifiEnabled()) { mScanner.forceScan(); } return true; case MENU_ID_ADD_NETWORK: if (mWifiManager.isWifiEnabled()) { onAddNetworkPressed(); } return true; case MENU_ID_SAVED_NETWORK: if (getActivity() instanceof SettingsActivity) { ((SettingsActivity) getActivity()).startPreferencePanel( SavedAccessPointsWifiSettings.class.getCanonicalName(), null, R.string.wifi_saved_access_points_titlebar, null, this, 0); } else { startFragment(this, SavedAccessPointsWifiSettings.class.getCanonicalName(), R.string.wifi_saved_access_points_titlebar, -1 /* Do not request a result */, null); } return true; case MENU_ID_ADVANCED: if (getActivity() instanceof SettingsActivity) { ((SettingsActivity) getActivity()).startPreferencePanel( AdvancedWifiSettings.class.getCanonicalName(), null, R.string.wifi_advanced_titlebar, null, this, 0); } else { startFragment(this, AdvancedWifiSettings.class.getCanonicalName(), R.string.wifi_advanced_titlebar, -1 /* Do not request a results */, null); } return true; } return super.onOptionsItemSelected(item); } /** * *xxxxx *xxxxx * ************************************ * *ActionsCode(author:phchen, change_code) */ @Override public void onCreateContextMenu(ContextMenu menu, View view, ContextMenuInfo info) { if (info instanceof AdapterContextMenuInfo) { Preference preference = (Preference) getListView().getItemAtPosition( ((AdapterContextMenuInfo) info).position); if (preference instanceof AccessPoint) { mSelectedAccessPoint = (AccessPoint) preference; menu.setHeaderTitle(mSelectedAccessPoint.ssid); if (mSelectedAccessPoint.getLevel() != -1 && mSelectedAccessPoint.getState() == null) { menu.add(Menu.NONE, MENU_ID_CONNECT, 0, R.string.wifi_menu_connect); } if (mSelectedAccessPoint.networkId != INVALID_NETWORK_ID) { if (ActivityManager.getCurrentUser() == UserHandle.USER_OWNER) { menu.add(Menu.NONE, MENU_ID_FORGET, 0, R.string.wifi_menu_forget); } menu.add(Menu.NONE, MENU_ID_MODIFY, 0, R.string.wifi_menu_modify); //ActionsCode(phchen, BUGFIX: BUG00252997 ), NfcManager mNfcManager = new NfcManager(getActivity().getApplicationContext()); if ((mSelectedAccessPoint.security != AccessPoint.SECURITY_NONE) && ((mNfcManager != null) && (mNfcManager.getDefaultAdapter() != null))){ // Only allow writing of NFC tags for password-protected networks. menu.add(Menu.NONE, MENU_ID_WRITE_NFC, 0, R.string.wifi_menu_write_to_nfc); } } } } } @Override public boolean onContextItemSelected(MenuItem item) { if (mSelectedAccessPoint == null) { return super.onContextItemSelected(item); } switch (item.getItemId()) { case MENU_ID_CONNECT: { if (mSelectedAccessPoint.networkId != INVALID_NETWORK_ID) { connect(mSelectedAccessPoint.networkId); } else if (mSelectedAccessPoint.security == AccessPoint.SECURITY_NONE) { /** Bypass dialog for unsecured networks */ mSelectedAccessPoint.generateOpenNetworkConfig(); connect(mSelectedAccessPoint.getConfig()); } else { showDialog(mSelectedAccessPoint, true); } return true; } case MENU_ID_FORGET: { mWifiManager.forget(mSelectedAccessPoint.networkId, mForgetListener); return true; } case MENU_ID_MODIFY: { showDialog(mSelectedAccessPoint, true); return true; } case MENU_ID_WRITE_NFC: showDialog(WRITE_NFC_DIALOG_ID); return true; } return super.onContextItemSelected(item); } @Override public boolean onPreferenceTreeClick(PreferenceScreen screen, Preference preference) { if (preference instanceof AccessPoint) { mSelectedAccessPoint = (AccessPoint) preference; /** Bypass dialog for unsecured, unsaved networks */ if (mSelectedAccessPoint.security == AccessPoint.SECURITY_NONE && mSelectedAccessPoint.networkId == INVALID_NETWORK_ID) { mSelectedAccessPoint.generateOpenNetworkConfig(); if (!savedNetworksExist) { savedNetworksExist = true; getActivity().invalidateOptionsMenu(); } connect(mSelectedAccessPoint.getConfig()); } else { showDialog(mSelectedAccessPoint, false); } } else { return super.onPreferenceTreeClick(screen, preference); } return true; } private void showDialog(AccessPoint accessPoint, boolean edit) { if (mDialog != null) { removeDialog(WIFI_DIALOG_ID); mDialog = null; } // Save the access point and edit mode mDlgAccessPoint = accessPoint; mDlgEdit = edit; showDialog(WIFI_DIALOG_ID); } @Override public Dialog onCreateDialog(int dialogId) { switch (dialogId) { case WIFI_DIALOG_ID: AccessPoint ap = mDlgAccessPoint; // For manual launch if (ap == null) { // For re-launch from saved state if (mAccessPointSavedState != null) { ap = new AccessPoint(getActivity(), mAccessPointSavedState); // For repeated orientation changes mDlgAccessPoint = ap; // Reset the saved access point data mAccessPointSavedState = null; } } // If it's null, fine, it's for Add Network mSelectedAccessPoint = ap; mDialog = new WifiDialog(getActivity(), this, ap, mDlgEdit); return mDialog; case WPS_PBC_DIALOG_ID: return new WpsDialog(getActivity(), WpsInfo.PBC); case WPS_PIN_DIALOG_ID: return new WpsDialog(getActivity(), WpsInfo.DISPLAY); case WRITE_NFC_DIALOG_ID: if (mSelectedAccessPoint != null) { mWifiToNfcDialog = new WriteWifiConfigToNfcDialog( getActivity(), mSelectedAccessPoint, mWifiManager); return mWifiToNfcDialog; } } return super.onCreateDialog(dialogId); } /** * Shows the latest access points available with supplemental information like * the strength of network and the security for it. */ private void updateAccessPoints() { // Safeguard from some delayed event handling if (getActivity() == null) return; if (isUiRestricted()) { addMessagePreference(R.string.wifi_empty_list_user_restricted); return; } final int wifiState = mWifiManager.getWifiState(); //when we update the screen, check if verbose logging has been turned on or off mVerboseLogging = mWifiManager.getVerboseLoggingLevel(); switch (wifiState) { case WifiManager.WIFI_STATE_ENABLED: // AccessPoints are automatically sorted with TreeSet. //add by guojiu 這裡是響應wifi開啟或關閉是的狀態 wifiSwitch.setChecked(true); wifiSwitch.setText(R.string.switch_on_text); //add by guojiu final Collection<AccessPoint> accessPoints = constructAccessPoints(getActivity(), mWifiManager, mLastInfo, mLastState); getPreferenceScreen().removeAll(); // getPreferenceScreen().removeAll()是為了把View中內容給去除掉 if (accessPoints.size() == 0) { addMessagePreference(R.string.wifi_empty_list_wifi_on); } getListView().removeHeaderView(mWifiAssistantCard); if (mWifiAssistantApp != null) { getListView().addHeaderView(mWifiAssistantCard); } //AccessPoint 這個類是獲取wifi的資訊,比如WIFI訊號強度,名字等資訊, //並且載入到頁面中 for (AccessPoint accessPoint : accessPoints) { // Ignore access points that are out of range. if (accessPoint.getLevel() != -1) { getPreferenceScreen().addPreference(accessPoint); } } break; case WifiManager.WIFI_STATE_ENABLING: getPreferenceScreen().removeAll(); break; case WifiManager.WIFI_STATE_DISABLING: addMessagePreference(R.string.wifi_stopping); break; case WifiManager.WIFI_STATE_DISABLED: //add by guojiu wifiSwitch.setChecked(true); wifiSwitch.setText(R.string.switch_off_text); //add by guojiu setOffMessage(); break; } } /** * Returns the Network Scorer for the Wifi Assistant App. */ public static NetworkScorerAppData getWifiAssistantApp(Context context) { Collection<NetworkScorerAppData> scorers = NetworkScorerAppManager.getAllValidScorers(context); if (scorers.isEmpty()) { return null; } // TODO: b/13780935 - Implement proper scorer selection. Rather than pick the first // scorer on the system, we should allow the user to select one. return scorers.iterator().next(); } private void prepareWifiAssistantCard() { if (getActivity() instanceof WifiPickerActivity) { return; } if (NetworkScorerAppManager.getActiveScorer(getActivity()) != null) { // A scorer is already enabled; don't show the card. return; } Collection<NetworkScorerAppData> scorers = NetworkScorerAppManager.getAllValidScorers(getActivity()); if (scorers.isEmpty()) { // No scorers are available to enable; don't show the card. return; } SharedPreferences sharedPreferences = getPreferenceScreen().getSharedPreferences(); int lastDismissPlatform = sharedPreferences.getInt(KEY_ASSISTANT_DISMISS_PLATFORM, 0); if (Build.VERSION.SDK_INT <= lastDismissPlatform) { // User has dismissed the Wi-Fi assistant card on this SDK release. Suppress the card // until the next major platform upgrade. return; } // TODO: b/13780935 - Implement proper scorer selection. Rather than pick the first // scorer on the system, we should allow the user to select one. mWifiAssistantApp = scorers.iterator().next(); if (mWifiAssistantCard == null) { mWifiAssistantCard = LayoutInflater.from(getActivity()) .inflate(R.layout.wifi_assistant_card, getListView(), false); Button setup = (Button) mWifiAssistantCard.findViewById(R.id.setup); Button noThanks = (Button) mWifiAssistantCard.findViewById(R.id.no_thanks_button); TextView assistantText = (TextView) mWifiAssistantCard.findViewById(R.id.wifi_assistant_text); assistantText.setText(getResources().getString( R.string.wifi_assistant_title_message, mWifiAssistantApp.mScorerName)); if (setup != null && noThanks != null) { setup.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { Intent intent = new Intent(); if (mWifiAssistantApp.mConfigurationActivityClassName != null) { // App has a custom configuration activity; launch that. // This custom activity will be responsible for launching the system // dialog. intent.setClassName(mWifiAssistantApp.mPackageName, mWifiAssistantApp.mConfigurationActivityClassName); } else { // Fall back on the system dialog. intent.setAction(NetworkScoreManager.ACTION_CHANGE_ACTIVE); intent.putExtra(NetworkScoreManager.EXTRA_PACKAGE_NAME, mWifiAssistantApp.mPackageName); } startActivityForResult(intent, REQUEST_ENABLE_WIFI_ASSISTANT); } }); noThanks.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { disableWifiAssistantCardUntilPlatformUpgrade(); getListView().removeHeaderView(mWifiAssistantCard); mWifiAssistantApp = null; } }); } } } private void disableWifiAssistantCardUntilPlatformUpgrade() { SharedPreferences sharedPreferences = getPreferenceScreen().getSharedPreferences(); SharedPreferences.Editor editor = sharedPreferences.edit(); editor.putInt(KEY_ASSISTANT_DISMISS_PLATFORM, Build.VERSION.SDK_INT); editor.apply(); } protected TextView