Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Open Source License 

import android.accessibilityservice.AccessibilityService;

import android.content.Intent;

public class Main {

    public static void gotoDeskTop(AccessibilityService service) {
        try {
            Intent home = new Intent(Intent.ACTION_MAIN);
            home.addCategory(Intent.CATEGORY_HOME);
            home.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
            service.getApplicationContext().startActivity(home);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}