I made an app wich will run onto a local Wifi (not internet connection) and it need to send mail via Gmail or maybe the Email app. So I would like to force it through 3G connection. I've done this :
if (imageLoaded) {
ConnectivityManager cm =
(ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE);
NetworkInfo ni = cm.getActiveNetworkInfo();
if (ni == null) {
}else{
if (ni.getType() == ConnectivityManager.TYPE_WIFI
|| ni.getType() == ConnectivityManager.TYPE_WIMAX) {
WifiManager wm = (WifiManager)getSystemService(Context.WIFI_SERVICE);
if (wm != null)
System.out.println(wm.disconnect());
}
while (true) {
ni = cm.getActiveNetworkInfo();
if (ni != null && ni.getType() == ConnectivityManager.TYPE_MOBILE
&& ni.isConnected()) {
sendOnClick();
break;
}
}
}
}
The code for the sending is :
Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("text/plain");
intent.putExtra(Intent.EXTRA_EMAIL, adress);
intent.putExtra(Intent.EXTRA_SUBJECT, subject);
intent.putExtra(Intent.EXTRA_TEXT, emailBody);
Uri fileUri = Uri.fromFile(file);
intent.putExtra(Intent.EXTRA_STREAM, fileUri);
try {
startActivity(Intent.createChooser(intent, "mail"));
}
But the thing is I have no clue how to be notified whan the mail is sent so I can reconnect to my local Wifi. Any idea on how to acheive this?