Irfan Sheriff | 2ff62e2 | 2009-12-03 10:53:50 -0800 | [diff] [blame] | 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; |
Jason Monk | 39b4674 | 2015-09-10 15:52:51 -0400 | [diff] [blame] | 20 | import android.net.wifi.WifiConfiguration; |
Irfan Sheriff | 2ff62e2 | 2009-12-03 10:53:50 -0800 | [diff] [blame] | 21 | import android.net.wifi.WifiManager; |
| 22 | import android.os.Bundle; |
| 23 | import android.widget.TextView; |
Irfan Sheriff | 2ff62e2 | 2009-12-03 10:53:50 -0800 | [diff] [blame] | 24 | |
| 25 | import com.android.settings.R; |
| 26 | |
Jason Monk | 39b4674 | 2015-09-10 15:52:51 -0400 | [diff] [blame] | 27 | import java.util.List; |
| 28 | |
Irfan Sheriff | 2ff62e2 | 2009-12-03 10:53:50 -0800 | [diff] [blame] | 29 | /** |
| 30 | * Configuration details saved by the user on the WifiSettings screen |
| 31 | */ |
| 32 | public class WifiConfigInfo extends Activity { |
| 33 | |
Irfan Sheriff | 2ff62e2 | 2009-12-03 10:53:50 -0800 | [diff] [blame] | 34 | private TextView mConfigList; |
| 35 | private WifiManager mWifiManager; |
| 36 | |
Irfan Sheriff | 2ff62e2 | 2009-12-03 10:53:50 -0800 | [diff] [blame] | 37 | @Override |
| 38 | protected void onCreate(Bundle savedInstanceState) { |
| 39 | super.onCreate(savedInstanceState); |
| 40 | |
Bonian Chen | 234b698 | 2021-03-30 00:51:15 +0000 | [diff] [blame] | 41 | mWifiManager = (WifiManager) getSystemService(WIFI_SERVICE); |
Irfan Sheriff | 2ff62e2 | 2009-12-03 10:53:50 -0800 | [diff] [blame] | 42 | 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 Dehkanov | 15a6869 | 2013-01-19 21:50:06 +0900 | [diff] [blame] | 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); |
Irfan Sheriff | 2ff62e2 | 2009-12-03 10:53:50 -0800 | [diff] [blame] | 58 | } |
Irfan Sheriff | 2ff62e2 | 2009-12-03 10:53:50 -0800 | [diff] [blame] | 59 | } |
| 60 | |
| 61 | } |