/cts/tests/tests/widget/src/android/widget/cts/ |
D | CursorTreeAdapterTest.java | 175 CursorTreeAdapter adapter = new MockCursorTreeAdapter(mGroupCursor, mContext); in testGetCursor() local 176 assertSame(mGroupCursor, adapter.getCursor()); in testGetCursor() 178 adapter.changeCursor(null); in testGetCursor() 179 assertNull(adapter.getCursor()); in testGetCursor() 181 adapter.setGroupCursor(mGroupCursor); in testGetCursor() 182 assertSame(mGroupCursor, adapter.getCursor()); in testGetCursor() 188 CursorTreeAdapter adapter = new MockCursorTreeAdapter(mGroupCursor, mContext); in testSetGroupCursor() local 189 assertSame(mGroupCursor, adapter.getCursor()); in testSetGroupCursor() 191 adapter.setGroupCursor(null); in testSetGroupCursor() 192 assertNull(adapter.getCursor()); in testSetGroupCursor() [all …]
|
D | BaseExpandableListAdapterTest.java | 49 BaseExpandableListAdapter adapter = new MockBaseExpandableListAdapter(); in testDefaults() local 50 assertEquals(1, adapter.getGroupTypeCount()); in testDefaults() 51 assertEquals(0, adapter.getGroupType(0)); in testDefaults() 52 assertEquals(1, adapter.getChildTypeCount()); in testDefaults() 53 assertEquals(0, adapter.getChildType(0, 0)); in testDefaults() 58 BaseExpandableListAdapter adapter = new MockBaseExpandableListAdapter(); in testAreAllItemsEnabled() local 59 assertTrue(adapter.areAllItemsEnabled()); in testAreAllItemsEnabled() 64 BaseExpandableListAdapter adapter = new MockBaseExpandableListAdapter(); in testGetCombinedId() local 66 long childID = adapter.getCombinedChildId(10, 100); in testGetCombinedId() 67 long groupID = adapter.getCombinedGroupId(10); in testGetCombinedId() [all …]
|
D | AbsSpinnerTest.java | 102 ArrayAdapter<CharSequence> adapter = ArrayAdapter.createFromResource(mActivity, in testSetSelectionIntBoolean() local 104 adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item); in testSetSelectionIntBoolean() 105 mAbsSpinner.setAdapter(adapter); in testSetSelectionIntBoolean() 125 ArrayAdapter<CharSequence> adapter = ArrayAdapter.createFromResource(mActivity, in testSetSelectionInt() local 127 adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item); in testSetSelectionInt() 128 mAbsSpinner.setAdapter(adapter); in testSetSelectionInt() 147 ArrayAdapter<CharSequence> adapter = ArrayAdapter.createFromResource(mActivity, in testAccessAdapter() local 149 adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item); in testAccessAdapter() 151 mAbsSpinner.setAdapter(adapter); in testAccessAdapter() 152 assertSame(adapter, mAbsSpinner.getAdapter()); in testAccessAdapter() [all …]
|
/cts/tests/tests/nfc/src/android/nfc/cts/ |
D | NfcAdapterTest.java | 80 NfcAdapter adapter = NfcAdapter.getDefaultAdapter(mContext); in setUp() local 81 Assume.assumeNotNull(adapter); in setUp() 82 Assume.assumeTrue(adapter.enable()); in setUp() 84 new FieldReader(adapter, adapter.getClass().getDeclaredField("sService")).read()); in setUp() 91 NfcAdapter adapter = NfcAdapter.getDefaultAdapter(mContext); in tearDown() 92 if (adapter != null) { in tearDown() 93 FieldSetter.setField(adapter, in tearDown() 94 adapter.getClass().getDeclaredField("sService"), mSavedService); in tearDown() 100 NfcAdapter adapter = getDefaultAdapter(); in testGetDefaultAdapter() local 101 Assert.assertNotNull(adapter); in testGetDefaultAdapter() [all …]
|
D | CardEmulationTest.java | 375 NfcAdapter adapter = NfcAdapter.getDefaultAdapter(mContext); in testTypeAPollingLoopToDefault() local 376 adapter.notifyHceDeactivated(); in testTypeAPollingLoopToDefault() 391 adapter.notifyHceDeactivated(); in testTypeAPollingLoopToDefault() 402 NfcAdapter adapter = NfcAdapter.getDefaultAdapter(mContext); in testTypeAPollingLoopToWalletHolder() 403 adapter.notifyHceDeactivated(); in testTypeAPollingLoopToWalletHolder() 414 adapter.notifyHceDeactivated(); in testTypeAPollingLoopToWalletHolder() 425 NfcAdapter adapter = NfcAdapter.getDefaultAdapter(mContext); in testCustomFrameToCustomInTwoFullLoops() 426 adapter.notifyHceDeactivated(); in testCustomFrameToCustomInTwoFullLoops() 427 CardEmulation cardEmulation = CardEmulation.getInstance(adapter); in testCustomFrameToCustomInTwoFullLoops() 452 adapter.notifyHceDeactivated(); in testCustomFrameToCustomInTwoFullLoops() [all …]
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/wifiaware/ |
D | TestListActivity.java | 67 ArrayTestListAdapter adapter = new ArrayTestListAdapter(this); in onCreate() local 69 adapter.add(TestListAdapter.TestListItem.newCategory(this, in onCreate() 71 adapter.add(TestListAdapter.TestListItem.newTest(this, in onCreate() 75 adapter.add(TestListAdapter.TestListItem.newTest(this, in onCreate() 79 adapter.add(TestListAdapter.TestListItem.newCategory(this, in onCreate() 81 adapter.add(TestListAdapter.TestListItem.newTest(this, in onCreate() 85 adapter.add(TestListAdapter.TestListItem.newTest(this, in onCreate() 89 adapter.add(TestListAdapter.TestListItem.newCategory(this, in onCreate() 91 adapter.add(TestListAdapter.TestListItem.newTest(this, in onCreate() 95 adapter.add(TestListAdapter.TestListItem.newTest(this, in onCreate() [all …]
|
/cts/tests/tests/print/src/android/print/cts/ |
D | PrintDocumentAdapterContractTest.java | 89 final PrintDocumentAdapter adapter = createMockPrintDocumentAdapter( in noPrintOptionsOrPrinterChange() local 119 print(adapter); in noPrintOptionsOrPrinterChange() 142 InOrder inOrder = inOrder(adapter); in noPrintOptionsOrPrinterChange() 145 inOrder.verify(adapter).onStart(); in noPrintOptionsOrPrinterChange() 157 verifyLayoutCall(inOrder, adapter, firstOldAttributes, firstNewAttributes, true); in noPrintOptionsOrPrinterChange() 161 inOrder.verify(adapter).onWrite(eq(firstPages), any(ParcelFileDescriptor.class), in noPrintOptionsOrPrinterChange() 176 verifyLayoutCall(inOrder, adapter, secondOldAttributes, secondNewAttributes, true); in noPrintOptionsOrPrinterChange() 179 verifyLayoutCall(inOrder, adapter, secondNewAttributes, secondNewAttributes, false); in noPrintOptionsOrPrinterChange() 186 inOrder.verify(adapter).onFinish(); in noPrintOptionsOrPrinterChange() 189 verifyNoMoreInteractions(adapter); in noPrintOptionsOrPrinterChange() [all …]
|
/cts/tests/tests/animation/src/android/animation/cts/ |
D | AnimatorListenerAdapterTest.java | 38 AnimatorListenerAdapter adapter = new MyAdapter(); in testNullOk() local 39 adapter.onAnimationStart(null); in testNullOk() 40 adapter.onAnimationEnd(null); in testNullOk() 41 adapter.onAnimationRepeat(null); in testNullOk() 42 adapter.onAnimationCancel(null); in testNullOk() 43 adapter.onAnimationPause(null); in testNullOk() 44 adapter.onAnimationResume(null); in testNullOk()
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/ |
D | P2pTestListActivity.java | 69 ArrayTestListAdapter adapter = new ArrayTestListAdapter(this); in onCreate() local 73 adapter.add(TestListItem.newCategory(this, R.string.p2p_group_formation)); in onCreate() 74 adapter.add(TestListItem.newTest(this, in onCreate() 78 adapter.add(TestListItem.newTest(this, in onCreate() 84 adapter.add(TestListItem.newCategory(this, R.string.p2p_join)); in onCreate() 85 adapter.add(TestListItem.newTest(this, in onCreate() 89 adapter.add(TestListItem.newTest(this, in onCreate() 94 adapter.add(TestListItem.newCategory(this, R.string.p2p_join_with_config)); in onCreate() 95 adapter.add(TestListItem.newTest(this, in onCreate() 99 adapter.add(TestListItem.newTest(this, in onCreate() [all …]
|
D | RequesterTestListActivity.java | 78 ArrayTestListAdapter adapter = new ArrayTestListAdapter(this); in getTestListAdapter() local 81 addTestCase(adapter, testcase); in getTestListAdapter() 84 adapter.registerDataSetObserver(new DataSetObserver() { in getTestListAdapter() 91 return adapter; in getTestListAdapter() 99 private void addTestCase(ArrayTestListAdapter adapter, TestCase testcase) { in addTestCase() argument 103 adapter.add(TestListItem.newTest(testcase.getTestName(), testcase.getTestId(), in addTestCase()
|
/cts/tests/tests/transition/src/android/transition/cts/ |
D | TransitionListenerAdapterTest.java | 38 TransitionListenerAdapter adapter = new MyAdapter(); in testNullOk() local 39 adapter.onTransitionStart(null); in testNullOk() 40 adapter.onTransitionEnd(null); in testNullOk() 41 adapter.onTransitionCancel(null); in testNullOk() 42 adapter.onTransitionPause(null); in testNullOk() 43 adapter.onTransitionResume(null); in testNullOk()
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/managedprovisioning/ |
D | CrossProfilePermissionControlActivity.java | 73 protected void setupInteractAcrossProfilesDisabledByDefault(ArrayTestListAdapter adapter) { in setupInteractAcrossProfilesDisabledByDefault() argument 74 adapter.add(new DialogTestListItem( in setupInteractAcrossProfilesDisabledByDefault() 81 protected void setupInteractAcrossProfilesEnabled(ArrayTestListAdapter adapter) { in setupInteractAcrossProfilesEnabled() argument 82 adapter.add(new DialogTestListItem( in setupInteractAcrossProfilesEnabled() 89 protected void setupInteractAcrossProfilesDisabled(ArrayTestListAdapter adapter) { in setupInteractAcrossProfilesDisabled() argument 90 adapter.add(new DialogTestListItem(this, in setupInteractAcrossProfilesDisabled() 102 protected void setupTests(ArrayTestListAdapter adapter) { in setupTests() argument 103 setupInteractAcrossProfilesDisabledByDefault(adapter); in setupTests() 104 setupInteractAcrossProfilesEnabled(adapter); in setupTests() 105 setupInteractAcrossProfilesDisabled(adapter); in setupTests()
|
D | DisallowAppsControlActivity.java | 90 private void setupCheckDisabledUninstallButtonTest(ArrayTestListAdapter adapter) { in setupCheckDisabledUninstallButtonTest() argument 91 adapter.add(new DialogTestListItem(this, in setupCheckDisabledUninstallButtonTest() 98 private void setupCheckDisabledForceStopTest(ArrayTestListAdapter adapter) { in setupCheckDisabledForceStopTest() argument 99 adapter.add(new DialogTestListItem(this, in setupCheckDisabledForceStopTest() 106 private void setupCheckDisabledAppStorageButtonsTest(ArrayTestListAdapter adapter) { in setupCheckDisabledAppStorageButtonsTest() argument 107 adapter.add(new DialogTestListItem(this, in setupCheckDisabledAppStorageButtonsTest() 115 protected void setupTests(ArrayTestListAdapter adapter) { in setupTests() argument 116 setupCheckDisabledUninstallButtonTest(adapter); in setupTests() 117 setupCheckDisabledForceStopTest(adapter); in setupTests() 118 setupCheckDisabledAppStorageButtonsTest(adapter); in setupTests()
|
D | ByodFlowTestActivity.java | 270 protected void setupTests(ArrayTestListAdapter adapter) { in setupTests() argument 515 adapter.add(mProfileOwnerInstalled); in setupTests() 516 adapter.add(mDiskEncryptionTest); in setupTests() 520 adapter.add(mWorkAppVisibleTest); in setupTests() 528 adapter.add(mCredSettingsVisibleTest); in setupTests() 529 adapter.add(mUserSettingsVisibleTest); in setupTests() 530 adapter.add(mAppSettingsVisibleTest); in setupTests() 531 adapter.add(mLocationSettingsVisibleTest); in setupTests() 532 adapter.add(mPrintSettingsVisibleTest); in setupTests() 533 adapter.add(mPersonalRingtonesTest); in setupTests() [all …]
|
D | EnterprisePrivacyTestListActivity.java | 79 final ArrayTestListAdapter adapter = new ArrayTestListAdapter(this); in onCreate() local 80 addTestsToAdapter(adapter); in onCreate() 81 adapter.registerDataSetObserver(new DataSetObserver() { in onCreate() 87 setTestListAdapter(adapter); in onCreate() 130 private void addTestsToAdapter(final ArrayTestListAdapter adapter) { in addTestsToAdapter() argument 131 adapter.add(createInteractiveTestItem(this, ENTERPRISE_PRIVACY_PAGE, in addTestsToAdapter() 136 adapter.add(buildCommandTest(ENTERPRISE_PRIVACY_NETWORK_LOGGING, in addTestsToAdapter() 141 adapter.add(buildCommandTest(ENTERPRISE_PRIVACY_BUG_REPORT, in addTestsToAdapter() 146 adapter.add(buildCommandTest(ENTERPRISE_PRIVACY_SECURITY_LOGGING, in addTestsToAdapter() 154 adapter.add(createInteractiveTestItem(this, ENTERPRISE_PRIVACY_ENTERPRISE_INSTALLED_APPS, in addTestsToAdapter() [all …]
|
D | KeyguardDisabledFeaturesActivity.java | 105 protected void setupDisableTrustAgentsTest(ArrayTestListAdapter adapter) { in setupDisableTrustAgentsTest() argument 106 adapter.add(new DialogTestListItem(this, R.string.provisioning_byod_disable_trust_agents, in setupDisableTrustAgentsTest() 112 protected void setupDisableUnredactedWorkNotification(ArrayTestListAdapter adapter) { in setupDisableUnredactedWorkNotification() argument 113 adapter.add(new DialogTestListItemWithIcon(this, in setupDisableUnredactedWorkNotification() 121 protected void setupFingerprintTests(ArrayTestListAdapter adapter) { in setupFingerprintTests() argument 131 adapter.add(new DialogTestListItem(this, R.string.provisioning_byod_disable_fingerprint, in setupFingerprintTests() 139 protected void setupTests(ArrayTestListAdapter adapter) { in setupTests() argument 141 setupDisableTrustAgentsTest(adapter); in setupTests() 143 setupDisableUnredactedWorkNotification(adapter); in setupTests() 144 setupFingerprintTests(adapter); in setupTests()
|
D | DeviceOwnerNegativeTestActivity.java | 58 final ArrayTestListAdapter adapter = new ArrayTestListAdapter(this); in onCreate() local 59 adapter.add(TestListItem.newCategory(this, R.string.device_owner_negative_category)); in onCreate() 61 addTestsToAdapter(adapter); in onCreate() 63 adapter.registerDataSetObserver(new DataSetObserver() { in onCreate() 70 setTestListAdapter(adapter); in onCreate() 73 private void addTestsToAdapter(final ArrayTestListAdapter adapter) { in addTestsToAdapter() argument 90 adapter.add(TestListItem.newTest(this, provisioningNegativeTestInfo.getTitle(), in addTestsToAdapter() 92 adapter.add(TestListItem.newTest(this, R.string.enterprise_privacy_quick_settings_negative, in addTestsToAdapter() 104 adapter.add(createInteractiveTestItem(this, ENTERPRISE_PRIVACY_KEYGUARD_NEGATIVE, in addTestsToAdapter() 109 adapter.add(createInteractiveTestItem(this, ENTERPRISE_PRIVACY_ADD_ACCOUNT_NEGATIVE, in addTestsToAdapter()
|
D | DeviceOwnerPositiveTestActivity.java | 164 final ArrayTestListAdapter adapter = new ArrayTestListAdapter(this); in onCreate() local 165 adapter.add(TestListItem.newCategory(this, R.string.device_owner_positive_category)); in onCreate() 167 addTestsToAdapter(adapter); in onCreate() 169 adapter.registerDataSetObserver(new DataSetObserver() { in onCreate() 176 setTestListAdapter(adapter); in onCreate() 223 private void addTestsToAdapter(final ArrayTestListAdapter adapter) { in addTestsToAdapter() argument 224 adapter.add(createTestItem(this, CHECK_DEVICE_OWNER_TEST_ID, in addTestsToAdapter() 229 adapter.add(createTestItem(this, CHECK_PROFILE_OWNER_TEST_ID, in addTestsToAdapter() 233 adapter.add(createTestItem(this, CHECK_USER_AFFILIATED_TEST_ID, in addTestsToAdapter() 240 adapter.add(createInteractiveTestItem(this, DEVICE_ADMIN_SETTINGS_ID, in addTestsToAdapter() [all …]
|
D | ManagedUserPositiveTestActivity.java | 84 final ArrayTestListAdapter adapter = new ArrayTestListAdapter(this); in onCreate() local 85 adapter.add(TestListItem.newCategory(this, R.string.managed_user_positive_category)); in onCreate() 87 addTestsToAdapter(adapter); in onCreate() 89 adapter.registerDataSetObserver(new DataSetObserver() { in onCreate() 96 setTestListAdapter(adapter); in onCreate() 114 private void addTestsToAdapter(final ArrayTestListAdapter adapter) { in addTestsToAdapter() argument 117 adapter.add(createInteractiveTestItem(this, CHECK_NEW_USER_DISCLAIMER_TEST_ID, in addTestsToAdapter() 128 adapter.add(createTestItem(this, CHECK_AFFILIATED_PROFILE_OWNER_TEST_ID, in addTestsToAdapter() 134 adapter.add(createInteractiveTestItem(this, DEVICE_ADMIN_SETTINGS_ID, in addTestsToAdapter() 143 adapter.add(createInteractiveTestItem(this, DISABLE_STATUS_BAR_TEST_ID, in addTestsToAdapter() [all …]
|
D | DeviceOwnerRequestingBugreportTestActivity.java | 144 final ArrayTestListAdapter adapter = new ArrayTestListAdapter(this); in onCreate() local 145 adapter.add(TestListItem.newCategory(this, in onCreate() 148 addTestsToAdapter(adapter); in onCreate() 150 adapter.registerDataSetObserver(new DataSetObserver() { in onCreate() 157 setTestListAdapter(adapter); in onCreate() 192 private void addTestsToAdapter(final ArrayTestListAdapter adapter) { in addTestsToAdapter() argument 193 adapter.add(createTestItem(this, CHECK_DEVICE_OWNER_TEST_ID, in addTestsToAdapter() 198 adapter.add(createTestItem(this, CHECK_PROFILE_OWNER_TEST_ID, in addTestsToAdapter() 202 adapter.add(createTestItem(this, CHECK_USER_AFFILIATED_TEST_ID, in addTestsToAdapter() 209 adapter.add(createInteractiveTestItem(this, BUGREPORT_SHARING_DECLINED_WHILE_BEING_TAKEN, in addTestsToAdapter() [all …]
|
/cts/tests/tests/content/src/android/content/cts/ |
D | DeferSyncTest.java | 111 AbstractThreadedSyncAdapter adapter = NotAlwaysSyncableSyncService.getInstance( in deferSyncAndMakeSyncable() local 113 when(adapter.onUnsyncableAccount()).thenReturn(false); in deferSyncAndMakeSyncable() 116 verify(adapter, timeout(SYNC_TIMEOUT_MILLIS)).onUnsyncableAccount(); in deferSyncAndMakeSyncable() 123 verify(adapter, timeout(SYNC_TIMEOUT_MILLIS)).onPerformSync(any(), in deferSyncAndMakeSyncable() 136 AbstractThreadedSyncAdapter adapter = NotAlwaysSyncableSyncService.getInstance( in deferSyncAndReportIsReady() local 138 when(adapter.onUnsyncableAccount()).thenReturn(false); in deferSyncAndReportIsReady() 141 verify(adapter, timeout(SYNC_TIMEOUT_MILLIS)).onUnsyncableAccount(); in deferSyncAndReportIsReady() 144 when(adapter.onUnsyncableAccount()).thenReturn(true); in deferSyncAndReportIsReady() 146 verify(adapter, atLeast(1)).onUnsyncableAccount(); in deferSyncAndReportIsReady() 149 verify(adapter, timeout(SYNC_TIMEOUT_MILLIS)).onPerformSync(any(), in deferSyncAndReportIsReady() [all …]
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/wifi/ |
D | TestListActivity.java | 61 ArrayTestListAdapter adapter = new ArrayTestListAdapter(this); in onCreate() local 62 adapter.add(TestListAdapter.TestListItem.newCategory(this, in onCreate() 64 adapter.add(TestListAdapter.TestListItem.newTest(this, in onCreate() 68 adapter.add(TestListAdapter.TestListItem.newTest(this, in onCreate() 72 adapter.add(TestListAdapter.TestListItem.newTest(this, in onCreate() 77 adapter.add(TestListAdapter.TestListItem.newTest(this, in onCreate() 82 adapter.add(TestListAdapter.TestListItem.newCategory(this, in onCreate() 84 adapter.add(TestListAdapter.TestListItem.newTest(this, in onCreate() 88 adapter.add(TestListAdapter.TestListItem.newTest(this, in onCreate() 92 adapter.add(TestListAdapter.TestListItem.newTest(this, in onCreate() [all …]
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/ |
D | NfcTestActivity.java | 53 ArrayTestListAdapter adapter = new ArrayTestListAdapter(this); in onCreate() local 56 adapter.add(TestListItem.newCategory(this, R.string.nfc_tag_verification)); in onCreate() 57 adapter.add(TestListItem.newTest(this, R.string.nfc_ndef, in onCreate() 60 adapter.add(TestListItem.newTest(this, R.string.nfc_mifare_ultralight, in onCreate() 66 adapter.add(TestListItem.newCategory(this, R.string.nfc_hce_f)); in onCreate() 68 adapter.add(TestListItem.newTest(this, R.string.nfc_hce_f_reader_tests, in onCreate() 72 adapter.add(TestListItem.newTest(this, R.string.nfc_hce_f_emulator_tests, in onCreate() 78 adapter.add(TestListItem.newCategory(this, R.string.nfc_offhost_uicc)); in onCreate() 80 adapter.add(TestListItem.newTest(this, R.string.nfc_offhost_uicc_reader_tests, in onCreate() 84 adapter.add(TestListItem.newTest(this, R.string.nfc_offhost_uicc_emulator_tests, in onCreate() [all …]
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/offhost/ |
D | OffhostUiccEmulatorTestActivity.java | 39 ArrayTestListAdapter adapter = new ArrayTestListAdapter(this); in onCreate() local 42 adapter.add(TestListItem.newCategory(this, R.string.nfc_offhost_uicc_emulator_tests)); in onCreate() 44 … adapter.add(TestListItem.newTest(this, R.string.nfc_offhost_uicc_transaction_event1_emulator, in onCreate() 48 … adapter.add(TestListItem.newTest(this, R.string.nfc_offhost_uicc_transaction_event2_emulator, in onCreate() 52 … adapter.add(TestListItem.newTest(this, R.string.nfc_offhost_uicc_transaction_event3_emulator, in onCreate() 58 setTestListAdapter(adapter); in onCreate()
|
D | OffhostUiccReaderTestActivity.java | 39 ArrayTestListAdapter adapter = new ArrayTestListAdapter(this); in onCreate() local 42 adapter.add(TestListItem.newCategory(this, R.string.nfc_offhost_uicc_reader_tests)); in onCreate() 44 … adapter.add(TestListItem.newTest(this, R.string.nfc_offhost_uicc_transaction_event1_reader, in onCreate() 48 … adapter.add(TestListItem.newTest(this, R.string.nfc_offhost_uicc_transaction_event2_reader, in onCreate() 52 … adapter.add(TestListItem.newTest(this, R.string.nfc_offhost_uicc_transaction_event3_reader, in onCreate() 58 setTestListAdapter(adapter); in onCreate()
|