blob: 0de306396a2dee74d22abd7443e306083f0f57fd [file] [log] [blame]
Irfan Sheriff2ff62e22009-12-03 10:53:50 -08001/*
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
17package com.android.settings.wifi;
18
19import android.app.Activity;
Jason Monk39b46742015-09-10 15:52:51 -040020import android.net.wifi.WifiConfiguration;
Irfan Sheriff2ff62e22009-12-03 10:53:50 -080021import android.net.wifi.WifiManager;
22import android.os.Bundle;
23import android.widget.TextView;
Irfan Sheriff2ff62e22009-12-03 10:53:50 -080024
25import com.android.settings.R;
26
Jason Monk39b46742015-09-10 15:52:51 -040027import java.util.List;
28
Irfan Sheriff2ff62e22009-12-03 10:53:50 -080029/**
30 * Configuration details saved by the user on the WifiSettings screen
31 */
32public class WifiConfigInfo extends Activity {
33
Irfan Sheriff2ff62e22009-12-03 10:53:50 -080034 private TextView mConfigList;
35 private WifiManager mWifiManager;
36
Irfan Sheriff2ff62e22009-12-03 10:53:50 -080037 @Override
38 protected void onCreate(Bundle savedInstanceState) {
39 super.onCreate(savedInstanceState);
40
Bonian Chen234b6982021-03-30 00:51:15 +000041 mWifiManager = (WifiManager) getSystemService(WIFI_SERVICE);
Irfan Sheriff2ff62e22009-12-03 10:53:50 -080042 setContentView(R.layout.wifi_config_info);
43 mConfigList = (TextView) findViewById(R.id.config_list);
44 }
45
46 @Override
47 protected void onResume() {
48 super.onResume();
Shuhrat Dehkanov15a68692013-01-19 21:50:06 +090049 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);
Irfan Sheriff2ff62e22009-12-03 10:53:50 -080058 }
Irfan Sheriff2ff62e22009-12-03 10:53:50 -080059 }
60
61}