In today’s tutorial I will show you how to open the wifisettings in android programatically.
This code comes handy when the user have not enabled the wifi and you want the user to enable it for your application to work.
Here is the code for that.
Here is the layout xml- main.xml
This code comes handy when the user have not enabled the wifi and you want the user to enable it for your application to work.
Here is the code for that.
1 
2 
3 
4 
5 
6 
7 
8 
9 
10 
11 
12 
13 
14 
15 
16 
17 
18 
19 
20 
21 
22 
23 
24 
25 
26 
27 
28 
29 
30 
31 
32 
33 
34 
 | package com.coderzheaven;import android.app.Activity;import android.content.ComponentName;import android.content.Intent;import android.os.Bundle;import android.view.View;import android.view.View.OnClickListener;import android.widget.Button;public class OpenWifiSettingsDemo extends Activity {    @Override    public void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.main);        Button open = (Button)findViewById(R.id.open);        open.setOnClickListener(new OnClickListener() {            @Override            public void onClick(View v) {                openWifiSettings();            }        });    }    public void openWifiSettings(){        final Intent intent = new Intent(Intent.ACTION_MAIN, null);        intent.addCategory(Intent.CATEGORY_LAUNCHER);        final ComponentName cn = new ComponentName("com.android.settings", "com.android.settings.wifi.WifiSettings");        intent.setComponent(cn);        intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);        startActivity( intent);    }} | 
1 
2 
3 
4 
5 
6 
7 
8 
9 
10 
11 
12 
13 
14 
15 
16 
17 
18 
19 
 | <?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:orientation="vertical"    android:layout_width="fill_parent"    android:layout_height="fill_parent"    ><TextView    android:layout_width="fill_parent"    android:layout_height="wrap_content"    android:text="How to open Wifi Settings Demo"    />  <Button    android:layout_width="fill_parent"    android:layout_height="wrap_content"    android:text="Open Wifi settings"    android:id="@+id/open"    /></LinearLayout> | 
No comments:
Post a Comment