Home
last modified time | relevance | path

Searched refs:adapter (Results 1 – 25 of 92) sorted by relevance

1234

/cts/tests/tests/widget/src/android/widget/cts/
DCursorTreeAdapterTest.java175 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 …]
DBaseExpandableListAdapterTest.java49 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 …]
DAbsSpinnerTest.java93 ArrayAdapter<CharSequence> adapter = ArrayAdapter.createFromResource(mActivity, in testSetSelectionIntBoolean() local
95 adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item); in testSetSelectionIntBoolean()
96 mAbsSpinner.setAdapter(adapter); in testSetSelectionIntBoolean()
116 ArrayAdapter<CharSequence> adapter = ArrayAdapter.createFromResource(mActivity, in testSetSelectionInt() local
118 adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item); in testSetSelectionInt()
119 mAbsSpinner.setAdapter(adapter); in testSetSelectionInt()
138 ArrayAdapter<CharSequence> adapter = ArrayAdapter.createFromResource(mActivity, in testAccessAdapter() local
140 adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item); in testAccessAdapter()
142 mAbsSpinner.setAdapter(adapter); in testAccessAdapter()
143 assertSame(adapter, mAbsSpinner.getAdapter()); in testAccessAdapter()
[all …]
/cts/tests/tests/bluetooth/src/android/bluetooth/cts/
DBasicAdapterTest.java124 BluetoothAdapter adapter = BluetoothAdapter.getDefaultAdapter(); in test_enableDisable() local
127 disable(adapter); in test_enableDisable()
128 enable(adapter); in test_enableDisable()
137 BluetoothAdapter adapter = BluetoothAdapter.getDefaultAdapter(); in test_getAddress() local
138 enable(adapter); in test_getAddress()
140 assertTrue(BluetoothAdapter.checkBluetoothAddress(adapter.getAddress())); in test_getAddress()
148 BluetoothAdapter adapter = BluetoothAdapter.getDefaultAdapter(); in test_getName() local
149 enable(adapter); in test_getName()
151 String name = adapter.getName(); in test_getName()
160 BluetoothAdapter adapter = BluetoothAdapter.getDefaultAdapter(); in test_getBondedDevices() local
[all …]
/cts/tests/tests/print/src/android/print/cts/
DPrintDocumentAdapterContractTest.java88 final PrintDocumentAdapter adapter = createMockPrintDocumentAdapter( in noPrintOptionsOrPrinterChange() local
118 print(adapter); in noPrintOptionsOrPrinterChange()
144 InOrder inOrder = inOrder(adapter); in noPrintOptionsOrPrinterChange()
147 inOrder.verify(adapter).onStart(); in noPrintOptionsOrPrinterChange()
159 verifyLayoutCall(inOrder, adapter, firstOldAttributes, firstNewAttributes, true); in noPrintOptionsOrPrinterChange()
163 inOrder.verify(adapter).onWrite(eq(firstPages), any(ParcelFileDescriptor.class), in noPrintOptionsOrPrinterChange()
178 verifyLayoutCall(inOrder, adapter, secondOldAttributes, secondNewAttributes, true); in noPrintOptionsOrPrinterChange()
181 verifyLayoutCall(inOrder, adapter, secondNewAttributes, secondNewAttributes, false); in noPrintOptionsOrPrinterChange()
188 inOrder.verify(adapter).onFinish(); in noPrintOptionsOrPrinterChange()
191 verifyNoMoreInteractions(adapter); in noPrintOptionsOrPrinterChange()
[all …]
/cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/hce/
DHceEmulatorTestActivity.java41 ArrayTestListAdapter adapter = new ArrayTestListAdapter(this); in onCreate() local
46 adapter.add(TestListItem.newCategory(this, R.string.nfc_hce_emulator_tests)); in onCreate()
54 adapter.add(TestListItem.newTest(this, R.string.nfc_hce_protocol_params_emulator, in onCreate()
58 adapter.add(TestListItem.newTest(this, R.string.nfc_hce_single_payment_emulator, in onCreate()
62 adapter.add(TestListItem.newTest(this, R.string.nfc_hce_dual_payment_emulator, in onCreate()
66 adapter.add(TestListItem.newTest(this, R.string.nfc_hce_change_default_emulator, in onCreate()
70 adapter.add(TestListItem.newTest(this, R.string.nfc_hce_foreground_payment_emulator, in onCreate()
74 adapter.add(TestListItem.newTest(this, R.string.nfc_hce_single_non_payment_emulator, in onCreate()
78 adapter.add(TestListItem.newTest(this, R.string.nfc_hce_dual_non_payment_emulator, in onCreate()
82adapter.add(TestListItem.newTest(this, R.string.nfc_hce_conflicting_non_payment_emulator, in onCreate()
[all …]
DHceReaderTestActivity.java39 ArrayTestListAdapter adapter = new ArrayTestListAdapter(this); in onCreate() local
42 adapter.add(TestListItem.newCategory(this, R.string.nfc_hce_reader_tests)); in onCreate()
44 adapter.add(TestListItem.newTest(this, R.string.nfc_hce_protocol_params_reader, in onCreate()
48 adapter.add(TestListItem.newTest(this, R.string.nfc_hce_single_payment_reader, in onCreate()
52 adapter.add(TestListItem.newTest(this, R.string.nfc_hce_dual_payment_reader, in onCreate()
56 adapter.add(TestListItem.newTest(this, R.string.nfc_hce_change_default_reader, in onCreate()
60 adapter.add(TestListItem.newTest(this, R.string.nfc_hce_foreground_payment_reader, in onCreate()
64 adapter.add(TestListItem.newTest(this, R.string.nfc_hce_single_non_payment_reader, in onCreate()
68 adapter.add(TestListItem.newTest(this, R.string.nfc_hce_dual_non_payment_reader, in onCreate()
72 adapter.add(TestListItem.newTest(this, R.string.nfc_hce_conflicting_non_payment_reader, in onCreate()
[all …]
/cts/apps/CtsVerifier/src/com/android/cts/verifier/wifiaware/
DTestListActivity.java65 ArrayTestListAdapter adapter = new ArrayTestListAdapter(this); in onCreate() local
67 adapter.add(TestListAdapter.TestListItem.newCategory(this, in onCreate()
69 adapter.add(TestListAdapter.TestListItem.newTest(this, in onCreate()
73 adapter.add(TestListAdapter.TestListItem.newTest(this, in onCreate()
77 adapter.add(TestListAdapter.TestListItem.newCategory(this, in onCreate()
79 adapter.add(TestListAdapter.TestListItem.newTest(this, in onCreate()
83 adapter.add(TestListAdapter.TestListItem.newTest(this, in onCreate()
87 adapter.add(TestListAdapter.TestListItem.newCategory(this, in onCreate()
89 adapter.add(TestListAdapter.TestListItem.newTest(this, in onCreate()
93 adapter.add(TestListAdapter.TestListItem.newTest(this, in onCreate()
[all …]
/cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/
DP2pTestListActivity.java68 ArrayTestListAdapter adapter = new ArrayTestListAdapter(this); in onCreate() local
70 adapter.add(TestListItem.newCategory(this, R.string.p2p_group_formation)); in onCreate()
71 adapter.add(TestListItem.newTest(this, in onCreate()
75 adapter.add(TestListItem.newTest(this, in onCreate()
80 adapter.add(TestListItem.newCategory(this, R.string.p2p_join)); in onCreate()
81 adapter.add(TestListItem.newTest(this, in onCreate()
85 adapter.add(TestListItem.newTest(this, in onCreate()
90 adapter.add(TestListItem.newCategory(this, R.string.p2p_join_with_config)); in onCreate()
91 adapter.add(TestListItem.newTest(this, in onCreate()
95 adapter.add(TestListItem.newTest(this, in onCreate()
[all …]
DRequesterTestListActivity.java78 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/apps/CtsVerifier/src/com/android/cts/verifier/nfc/
DNfcTestActivity.java54 ArrayTestListAdapter adapter = new ArrayTestListAdapter(this); in onCreate() local
57 adapter.add(TestListItem.newCategory(this, R.string.nfc_pee_2_pee)); in onCreate()
58 adapter.add(TestListItem.newTest(this, R.string.nfc_ndef_push_sender, in onCreate()
61 adapter.add(TestListItem.newTest(this, R.string.nfc_ndef_push_receiver, in onCreate()
66 adapter.add(TestListItem.newTest(this, R.string.nfc_llcp_version_check, in onCreate()
72 adapter.add(TestListItem.newCategory(this, R.string.nfc_tag_verification)); in onCreate()
73 adapter.add(TestListItem.newTest(this, R.string.nfc_ndef, in onCreate()
76 adapter.add(TestListItem.newTest(this, R.string.nfc_mifare_ultralight, in onCreate()
81 adapter.add(TestListItem.newCategory(this, R.string.nfc_hce)); in onCreate()
82 adapter.add(TestListItem.newTest(this, R.string.nfc_hce_reader_tests, in onCreate()
[all …]
/cts/tests/tests/animation/src/android/animation/cts/
DAnimatorListenerAdapterTest.java38 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/tests/tests/content/src/android/content/cts/
DDeferSyncTest.java111 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/managedprovisioning/
DByodFlowTestActivity.java208 protected void setupTests(ArrayTestListAdapter adapter) { in setupTests() argument
462 adapter.add(mProfileOwnerInstalled); in setupTests()
463 adapter.add(mDiskEncryptionTest); in setupTests()
467 adapter.add(mWorkAppVisibleTest); in setupTests()
470 adapter.add(mWorkNotificationBadgedTest); in setupTests()
471 adapter.add(mWorkStatusBarIconTest); in setupTests()
478 adapter.add(mProfileAccountVisibleTest); in setupTests()
479 adapter.add(mDeviceAdminVisibleTest); in setupTests()
480 adapter.add(mCredSettingsVisibleTest); in setupTests()
481 adapter.add(mUserSettingsVisibleTest); in setupTests()
[all …]
DDisallowAppsControlActivity.java90 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()
DDeviceOwnerPositiveTestActivity.java111 final ArrayTestListAdapter adapter = new ArrayTestListAdapter(this); in onCreate() local
112 adapter.add(TestListItem.newCategory(this, R.string.device_owner_positive_category)); in onCreate()
114 addTestsToAdapter(adapter); in onCreate()
116 adapter.registerDataSetObserver(new DataSetObserver() { in onCreate()
123 setTestListAdapter(adapter); in onCreate()
153 private void addTestsToAdapter(final ArrayTestListAdapter adapter) { in addTestsToAdapter() argument
154 adapter.add(createTestItem(this, CHECK_DEVICE_OWNER_TEST_ID, in addTestsToAdapter()
160 adapter.add(createInteractiveTestItem(this, DEVICE_ADMIN_SETTINGS_ID, in addTestsToAdapter()
170 adapter.add(createTestItem(this, WIFI_LOCKDOWN_TEST_ID, in addTestsToAdapter()
175 adapter.add(createInteractiveTestItem(this, DISALLOW_CONFIG_WIFI_ID, in addTestsToAdapter()
[all …]
DEnterprisePrivacyTestListActivity.java85 final ArrayTestListAdapter adapter = new ArrayTestListAdapter(this); in onCreate() local
86 addTestsToAdapter(adapter); in onCreate()
87 adapter.registerDataSetObserver(new DataSetObserver() { in onCreate()
93 setTestListAdapter(adapter); in onCreate()
132 private void addTestsToAdapter(final ArrayTestListAdapter adapter) { in addTestsToAdapter() argument
133 adapter.add(createInteractiveTestItem(this, ENTERPRISE_PRIVACY_PAGE, in addTestsToAdapter()
137 adapter.add(buildCommandTest(ENTERPRISE_PRIVACY_NETWORK_LOGGING, in addTestsToAdapter()
142 adapter.add(buildCommandTest(ENTERPRISE_PRIVACY_BUG_REPORT, in addTestsToAdapter()
147 adapter.add(buildCommandTest(ENTERPRISE_PRIVACY_SECURITY_LOGGING, in addTestsToAdapter()
152 adapter.add(createInteractiveTestItem(this, ENTERPRISE_PRIVACY_ENTERPRISE_INSTALLED_APPS, in addTestsToAdapter()
[all …]
DKeyguardDisabledFeaturesActivity.java105 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
124 adapter.add(new DialogTestListItem(this, in setupFingerprintTests()
129 adapter.add(new DialogTestListItem(this, R.string.provisioning_byod_disable_fingerprint, in setupFingerprintTests()
137 protected void setupTests(ArrayTestListAdapter adapter) { in setupTests() argument
139 setupDisableTrustAgentsTest(adapter); in setupTests()
141 setupDisableUnredactedWorkNotification(adapter); in setupTests()
[all …]
DManagedUserPositiveTestActivity.java77 final ArrayTestListAdapter adapter = new ArrayTestListAdapter(this); in onCreate() local
78 adapter.add(TestListItem.newCategory(this, R.string.managed_user_positive_category)); in onCreate()
80 addTestsToAdapter(adapter); in onCreate()
82 adapter.registerDataSetObserver(new DataSetObserver() { in onCreate()
89 setTestListAdapter(adapter); in onCreate()
105 private void addTestsToAdapter(final ArrayTestListAdapter adapter) { in addTestsToAdapter() argument
106 adapter.add(createTestItem(this, CHECK_AFFILIATED_PROFILE_OWNER_TEST_ID, in addTestsToAdapter()
112 adapter.add(createInteractiveTestItem(this, DEVICE_ADMIN_SETTINGS_ID, in addTestsToAdapter()
121 adapter.add(createInteractiveTestItem(this, DISABLE_STATUS_BAR_TEST_ID, in addTestsToAdapter()
138 adapter.add(createInteractiveTestItem(this, DISABLE_KEYGUARD_TEST_ID, in addTestsToAdapter()
[all …]
DDeviceOwnerRequestingBugreportTestActivity.java91 final ArrayTestListAdapter adapter = new ArrayTestListAdapter(this); in onCreate() local
92 adapter.add(TestListItem.newCategory(this, in onCreate()
95 addTestsToAdapter(adapter); in onCreate()
97 adapter.registerDataSetObserver(new DataSetObserver() { in onCreate()
104 setTestListAdapter(adapter); in onCreate()
133 private void addTestsToAdapter(final ArrayTestListAdapter adapter) { in addTestsToAdapter() argument
134 adapter.add(createTestItem(this, CHECK_DEVICE_OWNER_TEST_ID, in addTestsToAdapter()
140 adapter.add(createInteractiveTestItem(this, BUGREPORT_SHARING_DECLINED_WHILE_BEING_TAKEN, in addTestsToAdapter()
148 adapter.add(createInteractiveTestItem(this, BUGREPORT_SHARING_ACCEPTED_WHILE_BEING_TAKEN, in addTestsToAdapter()
156 adapter.add(createInteractiveTestItem(this, in addTestsToAdapter()
[all …]
DDeviceOwnerNegativeTestActivity.java58 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()
103 adapter.add(createInteractiveTestItem(this, ENTERPRISE_PRIVACY_KEYGUARD_NEGATIVE, in addTestsToAdapter()
108 adapter.add(createInteractiveTestItem(this, ENTERPRISE_PRIVACY_ADD_ACCOUNT_NEGATIVE, in addTestsToAdapter()
DNonMarketAppsActivity.java50 protected void setupTests(ArrayTestListAdapter adapter) { in setupTests() argument
101 adapter.add(disableNonMarketTest); in setupTests()
102 adapter.add(enableNonMarketTest); in setupTests()
103 adapter.add(disableNonMarketWorkProfileDeviceWideTest); in setupTests()
104 adapter.add(enableNonMarketWorkProfileDeviceWideTest); in setupTests()
105 adapter.add(disableNonMarketPrimaryUserDeviceWideTest); in setupTests()
106 adapter.add(enableNonMarketPrimaryUserDeviceWideTest); in setupTests()
/cts/tests/tests/transition/src/android/transition/cts/
DTransitionListenerAdapterTest.java38 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/wifi/
DTestListActivity.java61 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.newCategory(this, in onCreate()
79 adapter.add(TestListAdapter.TestListItem.newTest(this, in onCreate()
83 adapter.add(TestListAdapter.TestListItem.newTest(this, in onCreate()
87 adapter.add(TestListAdapter.TestListItem.newTest(this, in onCreate()
92 adapter.registerDataSetObserver(new DataSetObserver() { in onCreate()
[all …]
/cts/apps/CtsVerifier/src/com/android/cts/verifier/streamquality/
DStreamingVideoActivity.java181 ArrayTestListAdapter adapter = new ArrayTestListAdapter(this);
183 adapter.add(TestListItem.newCategory("RTSP"));
185 adapter, "H263 Video, AMR Audio", "rtsp_h263_amr", 13, ITAG_13_SIGNATURE);
187 adapter, "MPEG4 SP Video, AAC Audio", "rtsp_mpeg4_aac", 17, ITAG_17_SIGNATURE);
189 adapter, "H264 Base Video, AAC Audio", "rtsp_h264_aac", 18, ITAG_18_SIGNATURE);
191 adapter.add(TestListItem.newCategory("HTTP Progressive"));
193 addStreamToTests(adapter, stream);
196 adapter.registerDataSetObserver(new DataSetObserver() {
203 return adapter;
207 ArrayTestListAdapter adapter, String name, String code, int itag, String signature) {
[all …]

1234