Home | History | Annotate | Download | only in search

Lines Matching refs:intent

22 import android.content.Intent;
43 final Intent intent = getIntent();
45 // Hack to take EXTRA_FRAGMENT_ARG_KEY from intent and set into
46 // EXTRA_SHOW_FRAGMENT_ARGUMENTS. This is necessary because intent could be from external
48 final String settingKey = intent.getStringExtra(SettingsActivity.EXTRA_FRAGMENT_ARG_KEY);
51 intent.putExtra(EXTRA_SHOW_FRAGMENT_ARGUMENTS, args);
54 intent.setClass(this /* context */, SubSettings.class)
55 .addFlags(Intent.FLAG_ACTIVITY_FORWARD_RESULT);
56 startActivity(intent);