Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Apache License 

import android.content.ActivityNotFoundException;
import android.content.Context;
import android.content.Intent;

import android.provider.Settings;

public class Main {
    /**
     * wireless settings
     * 
     * @param context
     */
    public static void wirelessSettings(Context context) {
        if (context == null)
            return;

        try {
            context.startActivity(new Intent(Settings.ACTION_WIRELESS_SETTINGS));
        } catch (ActivityNotFoundException e) {
        } catch (Exception e) {
        }
    }
}