Okay so I am getting a force close when my app starts up trying to get the download link speed of the wifi connection. I think I have all the stuff in the correct spot but for some reason after adding the code for getlinkspeed it always force close on start up
import java.lang.reflect.Method;
import com.lite.up.wifitethernoroot.R;
import android.app.Activity;
import android.app.AlertDialog;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.content.IntentFilter;
import android.net.ConnectivityManager;
import android.net.NetworkInfo;
import android.net.wifi.WifiConfiguration;
import android.net.wifi.WifiInfo;
import android.net.wifi.WifiManager;
import android.os.Bundle;
import android.util.Log;
import android.view.KeyEvent;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.TextView;
import android.widget.Toast;
public class WifiHotSpotActivity extends Activity implements OnClickListener {
/** Called when the activity is first created. */
TextView textSsid, textSpeed;
private static final String TAG = "WiFiHotspotActivity";
private static Context mContext;
private static TextView info;
private WifiManager wifiManager;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
mContext = this;
setContentView(R.layout.tether);
info = (TextView) findViewById(R.id.instructions);
textSsid = (TextView)findViewById(R.id.Ssid);
textSpeed = (TextView)findViewById(R.id.Speed);
WifiConfiguration config = new WifiConfiguration();
config.SSID = "WiFiTether";
config.priority = 40;
config.allowedAuthAlgorithms.set(WifiConfiguration.AuthAlgorithm.OPEN);
WifiApManager wapm = new WifiApManager(this);
wapm.setWifiApEnabled(config, true);
//Set up click listeners for all the buttons
View continueButton = findViewById(R.id.turnoff);
continueButton.setOnClickListener(this);
DisplayWifiState();
this.registerReceiver(this.myWifiReceiver,
new IntentFilter(ConnectivityManager.CONNECTIVITY_ACTION));
}
public static class WifiApManager {
public static final int WIFI_AP_STATE_FAILED = 4;
private final WifiManager mWifiManager;
public WifiApManager(Context context) {
mWifiManager = (WifiManager) context
.getSystemService(Context.WIFI_SERVICE);
}
public boolean setWifiApEnabled(WifiConfiguration config,
boolean enabled) {
try {
if (enabled) { // disable WiFi in any case
mWifiManager.setWifiEnabled(false);
}
Method method = mWifiManager.getClass().getMethod(
"setWifiApEnabled", WifiConfiguration.class,
boolean.class);
return (Boolean) method.invoke(mWifiManager, config, enabled);
} catch (Exception e) {
Log.e(TAG, "", e);
return false;
}
}
public int getWifiApState() {
try {
Method method = mWifiManager.getClass().getMethod(
"getWifiApState");
return (Integer) method.invoke(mWifiManager);
} catch (Exception e) {
Log.e(TAG, "", e);
return WIFI_AP_STATE_FAILED;
}
}
}
private BroadcastReceiver myWifiReceiver
= new BroadcastReceiver(){
@Override
public void onReceive(Context arg0, Intent arg1) {
// TODO Auto-generated method stub
NetworkInfo networkInfo = (NetworkInfo) arg1.getParcelableExtra(ConnectivityManager.EXTRA_NETWORK_INFO);
if(networkInfo.getType() == ConnectivityManager.TYPE_WIFI){
DisplayWifiState();
}
}};
private void DisplayWifiState(){
ConnectivityManager myConnManager = (ConnectivityManager) getSystemService(CONNECTIVITY_SERVICE);
NetworkInfo myNetworkInfo = myConnManager.getNetworkInfo(ConnectivityManager.TYPE_WIFI);
WifiManager myWifiManager = (WifiManager)getSystemService(Context.WIFI_SERVICE);
WifiInfo myWifiInfo = myWifiManager.getConnectionInfo();
textSsid.setText(myWifiInfo.getSSID());
textSpeed.setText(String.valueOf(myWifiInfo.getLinkSpeed()) + " " + WifiInfo.LINK_SPEED_UNITS);
}
else{
textSsid.setText("---");
textSpeed.setText("---");
}
}
public void onClick(View v) {
switch (v.getId()) {
case R.id.turnoff:
WifiConfiguration config = new WifiConfiguration();
WifiManager wifiManager = (WifiManager)getBaseContext().getSystemService(Context.WIFI_SERVICE);
WifiApManager wapm = new WifiApManager(this);
wapm.setWifiApEnabled(config, false);
Toast.makeText(WifiHotSpotActivity.this, "WiFi HotSpot Stopped!", Toast.LENGTH_LONG).show();
}
}
@Override
public boolean onKeyDown(int keyCode, KeyEvent event) {
if (keyCode == KeyEvent.KEYCODE_BACK) {
return quitWithPID();
}
return super.onKeyDown(keyCode, event);
}
// reusable method (modifier may be public..)
private boolean quitWithPID() {
new AlertDialog.Builder(this).setIcon(
android.R.drawable.ic_dialog_alert).setTitle(R.string.ExitTitle)
.setMessage(R.string.Exit)
.setNegativeButton(R.string.no, null)
.setPositiveButton(R.string.yes,
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
// Exit the activity
WifiHotSpotActivity.this.finish();
// Terminate the process ;)
android.os.Process.killProcess(android.os.Process.myPid());
}
}).show();
return true;
}
}
XML File
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/pic"
android:layout_width="150dp"
android:layout_height="150dp"
android:layout_marginRight="80dip"
android:layout_marginLeft="80dip"
android:background="@drawable/pic"></ImageView>
<TextView
android:id="@+id/instructions"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="14dip"
android:layout_below="@+id/pic"
android:text="@string/Instructions1">
</TextView>
<TextView
android:id="@+id/LinkSpeed_TextView"
style="?android:attr/textAppearanceSmallInverse"
android:text="SSID:"
android:textSize="15dip"
android:paddingLeft = "5sp"
android:layout_marginTop="30dip"
android:layout_below="@+id/instructions"
android:textStyle="bold"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
style="?android:attr/textAppearanceSmallInverse"
android:text="Download:"
android:textSize="15dip"
android:layout_marginTop="30dip"
android:id="@+id/Speed"
android:textStyle="bold"
android:layout_below="@+id/LinkSpeed_TextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<Button
android:layout_marginTop="50dip"
android:id="@+id/turnoff"
android:layout_marginRight="50dip"
android:layout_marginLeft="50dip"
android:layout_width="fill_parent"
android:layout_below="@+id/Speed"
android:layout_height="wrap_content"
android:text="Stop Tethering" />
<TextView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_below="@id/turnoff"
android:text="Version 1.0.3"
android:gravity="bottom" />
</RelativeLayout>