Я хочу, чтобы ProgressDialog отображался, пока мой код включает WiFi и подключается к определенному SSID.Я видел другие вопросы с запуском другой темы.Нужно ли мне запускать отдельный поток, чтобы иметь возможность видеть ProgressDialog, пока выполняется код между show () и hide ()?Известно, что Wi-Fi, к которому я подключаюсь, существует и не имеет ключа безопасности.
package com.connectionmanager.app;
import java.util.List;
import android.app.Activity;
import android.app.ProgressDialog;
import android.content.Context;
import android.net.wifi.ScanResult;
import android.net.wifi.WifiConfiguration;
import android.net.wifi.WifiConfiguration.KeyMgmt;
import android.net.wifi.WifiManager;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.TextView;
public class FoundSavedUser extends Activity implements OnClickListener{
private WifiManager WifiInfo;
private ProgressDialog dialog;
private List<ScanResult> results;
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.connect_to_gogo);
//logView is temporary for displaying messages regarding connectivity.
TextView logView = (TextView) findViewById(R.id.logTextView);
WifiInfo = (WifiManager) this.getSystemService(Context.WIFI_SERVICE);
//Is WiFi on?
if(!WifiInfo.isWifiEnabled())
{
//Show the acknowledgment button that will allow user to turn on WiFi.
Button wifiButton = (Button) findViewById(R.id.wifiButton);
wifiButton.setVisibility(View.VISIBLE);
wifiButton.setOnClickListener(this);
}
}
@Override
public void onClick(View v)
{
// TODO Auto-generated method stub
if(v.getId() == (R.id.wifiButton))
{
//Setup a ProgressDialog until WiFi is switched on.
dialog = ProgressDialog.show(FoundSavedUser.this, "", "Loading. Please wait...", true);
dialog.show();
//Switch on WiFi
WifiInfo.setWifiEnabled(true);
//Get list of the results in object format ( like an array )
results = WifiInfo.getScanResults();
int i = 0;
String[] ssid = new String[results.size()];
for (ScanResult result : results)
{
ssid[i] = result.SSID;
i++;
Log.v("Hello","Printing result.SSID: " + result.SSID);
}
Log.v("Hello","Connecting to: myWiFi");
WifiConfiguration wifiConfig = new WifiConfiguration();
wifiConfig.SSID = "\"myWiFi\"";
wifiConfig.priority = 1;
wifiConfig.allowedKeyManagement.set(KeyMgmt.NONE);
wifiConfig.allowedGroupCiphers.set(WifiConfiguration.GroupCipher.TKIP);
wifiConfig.allowedAuthAlgorithms.set(WifiConfiguration.AuthAlgorithm.OPEN);
wifiConfig.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.NONE);
wifiConfig.status=WifiConfiguration.Status.ENABLED;
int netId = WifiInfo.addNetwork(wifiConfig);
if (WifiInfo.enableNetwork(netId, true))
{
Log.v("Hello","Connection enabled");
}
else
{
Log.v("Hello","Connection not enabled");
}
Log.v("Hello","Print netId: " + netId);
Log.v("Hello","Connection success!");
//Hide the ProgressDialog
dialog.hide();
}
}
}