Searched refs:TapAgainDialog (Results 1 – 5 of 5) sorted by relevance
/packages/modules/Nfc/NfcNci/tests/unit/src/com/android/nfc/cardemulation/ |
D | TapAgainDialogTest.java | 25 import static com.android.nfc.cardemulation.TapAgainDialog.EXTRA_APDU_SERVICE; 26 import static com.android.nfc.cardemulation.TapAgainDialog.EXTRA_CATEGORY; 58 ActivityScenario<TapAgainDialog> scenario = ActivityScenario.launch(getStartIntent()); in testOnCreate() 71 ActivityScenario<TapAgainDialog> scenario = ActivityScenario.launch(getStartIntent()); in testOnClick() 85 ActivityScenario<TapAgainDialog> scenario = ActivityScenario.launch(getStartIntent()); in testOnDestroy() 94 ActivityScenario<TapAgainDialog> scenario = ActivityScenario.launch(getStartIntent()); in testOnStop() 104 Intent intent = new Intent(context, TapAgainDialog.class); in getStartIntent()
|
D | HostEmulationManagerTest.java | 484 assertEquals(TapAgainDialog.ACTION_CLOSE, intent.getAction()); in testOnHostEmulationActivated() 1057 assertEquals(TapAgainDialog.ACTION_CLOSE, intent.getAction()); in testOnOffHostAidSelected_noActiveService_stateXfer() 1080 assertEquals(TapAgainDialog.ACTION_CLOSE, intent.getAction()); in testOnOffHostAidSelected_activeServiceBound_stateXfer() 1107 assertEquals(TapAgainDialog.ACTION_CLOSE, intent.getAction()); in testOnOffHostAidSelected_activeServiceBound_stateNonXfer() 1433 assertEquals(category, intent.getStringExtra(TapAgainDialog.EXTRA_CATEGORY)); in verifyTapAgainLaunched() 1434 assertEquals(service, intent.getParcelableExtra(TapAgainDialog.EXTRA_APDU_SERVICE)); in verifyTapAgainLaunched() 1437 assertEquals(TapAgainDialog.class.getCanonicalName(), intent.getComponent().getClassName()); in verifyTapAgainLaunched()
|
/packages/modules/Nfc/NfcNci/src/com/android/nfc/cardemulation/ |
D | AppChooserActivity.java | 188 Intent dialogIntent = new Intent(this, TapAgainDialog.class); in onItemClick() 189 dialogIntent.putExtra(TapAgainDialog.EXTRA_CATEGORY, mCategory); in onItemClick() 190 dialogIntent.putExtra(TapAgainDialog.EXTRA_APDU_SERVICE, info.serviceInfo); in onItemClick()
|
D | TapAgainDialog.java | 43 public class TapAgainDialog extends AlertActivity implements DialogInterface.OnClickListener { class
|
D | HostEmulationManager.java | 799 Intent intent = new Intent(TapAgainDialog.ACTION_CLOSE); in onHostEmulationActivated() 1109 Intent intent = new Intent(TapAgainDialog.ACTION_CLOSE); in onOffHostAidSelected() 1412 Intent dialogIntent = new Intent(mContext, TapAgainDialog.class); in launchTapAgain() 1413 dialogIntent.putExtra(TapAgainDialog.EXTRA_CATEGORY, category); in launchTapAgain() 1414 dialogIntent.putExtra(TapAgainDialog.EXTRA_APDU_SERVICE, service); in launchTapAgain()
|