Java tutorial
//package com.java2s; import android.app.Activity; import android.content.ActivityNotFoundException; import android.content.Intent; public class Main { public static boolean myStartActivity(Activity activity, Intent intent) { try { activity.startActivity(intent); return true; } catch (ActivityNotFoundException e) { return false; } catch (Exception ex) { ex.printStackTrace(); return false; } } }