Showing posts with label OPEN ACTIVITY. Show all posts
Showing posts with label OPEN ACTIVITY. Show all posts

Wednesday, February 25, 2015

ANDROID common method to open particular Activity

protected void openActivity(Class classs) {
        Log.d(CLASS,"Open Activity: "+classs.getSimpleName());
        Intent intent = new Intent(getApplicationContext(), classs);
        intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
        startActivity(intent);
        finish();               
     }