Home
last modified time | relevance | path

Searched refs:TapAgainDialog (Results 1 – 5 of 5) sorted by relevance

/packages/apps/Nfc/tests/instrumentation/src/com/android/nfc/cardemulation/
DTapAgainDialogTest.java25 import static com.android.nfc.cardemulation.TapAgainDialog.EXTRA_APDU_SERVICE;
26 import static com.android.nfc.cardemulation.TapAgainDialog.EXTRA_CATEGORY;
56 ActivityScenario<TapAgainDialog> scenario = ActivityScenario.launch(getStartIntent()); in testOnCreate()
79 ActivityScenario<TapAgainDialog> scenario = ActivityScenario.launch(getStartIntent()); in testOnDestroy()
87 ActivityScenario<TapAgainDialog> scenario = ActivityScenario.launch(getStartIntent()); in testOnStop()
97 Intent intent = new Intent(context, TapAgainDialog.class); in getStartIntent()
/packages/apps/Nfc/src/com/android/nfc/cardemulation/
DAppChooserActivity.java183 Intent dialogIntent = new Intent(this, TapAgainDialog.class); in onItemClick()
184 dialogIntent.putExtra(TapAgainDialog.EXTRA_CATEGORY, mCategory); in onItemClick()
185 dialogIntent.putExtra(TapAgainDialog.EXTRA_APDU_SERVICE, info.serviceInfo); in onItemClick()
DHostEmulationManager.java594 Intent intent = new Intent(TapAgainDialog.ACTION_CLOSE); in onHostEmulationActivated()
873 Intent intent = new Intent(TapAgainDialog.ACTION_CLOSE); in onOffHostAidSelected()
1049 Intent dialogIntent = new Intent(mContext, TapAgainDialog.class); in launchTapAgain()
1050 dialogIntent.putExtra(TapAgainDialog.EXTRA_CATEGORY, category); in launchTapAgain()
1051 dialogIntent.putExtra(TapAgainDialog.EXTRA_APDU_SERVICE, service); in launchTapAgain()
DTapAgainDialog.java40 public class TapAgainDialog extends AlertActivity implements DialogInterface.OnClickListener { class
/packages/apps/Nfc/tests/unit/src/com/android/nfc/cardemulation/
DHostEmulationManagerTest.java460 Assert.assertEquals(TapAgainDialog.ACTION_CLOSE, intent.getAction()); in testOnHostEmulationActivated()
1023 Assert.assertEquals(TapAgainDialog.ACTION_CLOSE, intent.getAction()); in testOnOffHostAidSelected_noActiveService_stateXfer()
1047 Assert.assertEquals(TapAgainDialog.ACTION_CLOSE, intent.getAction()); in testOnOffHostAidSelected_activeServiceBound_stateXfer()
1075 Assert.assertEquals(TapAgainDialog.ACTION_CLOSE, intent.getAction()); in testOnOffHostAidSelected_activeServiceBound_stateNonXfer()
1274 Assert.assertEquals(category, intent.getStringExtra(TapAgainDialog.EXTRA_CATEGORY)); in verifyTapAgainLaunched()
1275 Assert.assertEquals(service, intent.getParcelableExtra(TapAgainDialog.EXTRA_APDU_SERVICE)); in verifyTapAgainLaunched()
1278 Assert.assertEquals(TapAgainDialog.class.getCanonicalName(), in verifyTapAgainLaunched()