• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2009 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 package com.android.settings.wifi;
18 
19 import android.app.Activity;
20 import android.net.wifi.WifiConfiguration;
21 import android.net.wifi.WifiManager;
22 import android.os.Bundle;
23 import android.widget.TextView;
24 
25 import com.android.settings.R;
26 
27 import java.util.List;
28 
29 /**
30  * Configuration details saved by the user on the WifiSettings screen
31  */
32 public class WifiConfigInfo extends Activity {
33 
34     private TextView mConfigList;
35     private WifiManager mWifiManager;
36 
37     @Override
onCreate(Bundle savedInstanceState)38     protected void onCreate(Bundle savedInstanceState) {
39         super.onCreate(savedInstanceState);
40 
41         mWifiManager = (WifiManager) getSystemService(WIFI_SERVICE);
42         setContentView(R.layout.wifi_config_info);
43         mConfigList = (TextView) findViewById(R.id.config_list);
44     }
45 
46     @Override
onResume()47     protected void onResume() {
48         super.onResume();
49         if (mWifiManager.isWifiEnabled()) {
50             final List<WifiConfiguration> wifiConfigs = mWifiManager.getConfiguredNetworks();
51             StringBuffer configList  = new StringBuffer();
52             for (int i = wifiConfigs.size() - 1; i >= 0; i--) {
53                 configList.append(wifiConfigs.get(i));
54             }
55             mConfigList.setText(configList);
56         } else {
57             mConfigList.setText(R.string.wifi_state_disabled);
58         }
59     }
60 
61 }
62