OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:listview
(Results
501 - 525
of
1340
) sorted by null
<<
21
22
23
24
25
26
27
28
29
30
>>
/packages/apps/Settings/res/layout/
settings_storage_miscfiles_list.xml
27
<
ListView
android:id="@android:id/list"
usage_stats.xml
41
<
ListView
android:id="@+id/pkg_list"
vpn_lockdown_editor.xml
32
<
ListView
/packages/apps/Settings/src/com/android/settings/wifi/
WifiSettingsForSetupWizard.java
33
import android.widget.
ListView
;
62
final
ListView
list = (
ListView
) view.findViewById(android.R.id.list);
166
final
ListView
list = getListView();
/packages/apps/Stk/res/layout/
stk_menu_list.xml
33
<
ListView
android:id="@android:id/list"
/packages/apps/UnifiedEmail/res/layout/
mailbox_selection_activity.xml
30
<
ListView
/packages/apps/UnifiedEmail/res/values-v21/
styles.xml
25
<style name="ConversationListFadeBase" parent="android:Widget.Material.Light.
ListView
" />
/packages/inputmethods/LatinIME/java/res/layout/
user_dictionary_preference_list_fragment.xml
26
<
ListView
/packages/services/Telephony/res/layout/
adn_list.xml
18
<
ListView
android:id="@android:id/list"
telephony_disallowed_preference_screen.xml
24
<
ListView
android:id="@android:id/list"
/packages/services/Telephony/sip/res/layout/
sip_settings_ui.xml
24
<
ListView
xmlns:android="http://schemas.android.com/apk/res/android"
/packages/wallpapers/LivePicker/res/layout/
live_wallpaper_list.xml
20
<
ListView
/prebuilts/sdk/current/support/v7/mediarouter/res/layout/
mr_media_route_chooser_dialog.xml
21
<
ListView
android:id="@+id/media_route_list"
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
ListViewRule.java
28
* An {@link IViewRule} for android.widget.
ListView
and all its derived classes such
/cts/tests/tests/accessibilityservice/src/android/accessibilityservice/cts/
AccessibilityEndToEndTest.java
32
import android.widget.
ListView
;
59
expected.setClassName(
ListView
.class.getName());
69
final
ListView
listView
= (
ListView
) getActivity().findViewById(R.id.
listview
);
80
listView
.setSelection(1);
/cts/tests/tests/widget/src/android/widget/cts/
TabHostTest.java
29
import android.widget.
ListView
;
151
assertTrue(tabHost.getCurrentView() instanceof
ListView
);
260
assertTrue(tabHost.getCurrentView() instanceof
ListView
);
295
assertTrue(tabHost.getTabContentView().getChildAt(1) instanceof
ListView
);
311
assertTrue(tabHost.getTabContentView().getChildAt(1) instanceof
ListView
);
386
final
ListView
lv = new
ListView
(mActivity);
/cts/tests/tests/widget/src/android/widget/cts/util/
ExpandableListScenario.java
29
import android.widget.
ListView
;
35
* WARNING: A lot of the features are mixed between
ListView
's expected position
46
protected
ListView
createListView() {
56
protected void setAdapter(
ListView
listView
) {
57
((ExpandableListView)
listView
).setAdapter(mAdapter = createAdapter());
248
* @param flPos The flat list position (the position that the
ListView
goes by).
/developers/build/prebuilts/gradle/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/
EntryListFragment.java
40
import android.widget.
ListView
;
71
* Cursor adapter for controlling
ListView
results.
111
* List of Cursor columns to read from when preparing an adapter to populate the
ListView
.
224
* Move the Cursor returned by the query into the
ListView
adapter. This refreshes the existing
271
public void onListItemClick(
ListView
listView
, View view, int position, long id) {
272
super.onListItemClick(
listView
, view, position, id);
/developers/samples/android/connectivity/sync/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/
EntryListFragment.java
40
import android.widget.
ListView
;
71
* Cursor adapter for controlling
ListView
results.
111
* List of Cursor columns to read from when preparing an adapter to populate the
ListView
.
224
* Move the Cursor returned by the query into the
ListView
adapter. This refreshes the existing
271
public void onListItemClick(
ListView
listView
, View view, int position, long id) {
272
super.onListItemClick(
listView
, view, position, id);
/development/samples/browseable/BasicSyncAdapter/src/com.example.android.basicsyncadapter/
EntryListFragment.java
40
import android.widget.
ListView
;
71
* Cursor adapter for controlling
ListView
results.
111
* List of Cursor columns to read from when preparing an adapter to populate the
ListView
.
224
* Move the Cursor returned by the query into the
ListView
adapter. This refreshes the existing
271
public void onListItemClick(
ListView
listView
, View view, int position, long id) {
272
super.onListItemClick(
listView
, view, position, id);
/packages/apps/Settings/src/com/android/settings/
UserDictionarySettings.java
38
import android.widget.
ListView
;
113
final
ListView
listView
= getListView();
114
listView
.setAdapter(createAdapter());
115
listView
.setFastScrollEnabled(true);
116
listView
.setEmptyView(emptyView);
156
public void onListItemClick(
ListView
l, View v, int position, long id) {
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/userdictionary/
UserDictionarySettings.java
38
import android.widget.
ListView
;
152
final
ListView
listView
= getListView();
153
listView
.setAdapter(createAdapter());
154
listView
.setFastScrollEnabled(true);
155
listView
.setEmptyView(emptyView);
194
public void onListItemClick(
ListView
l, View v, int position, long id) {
/packages/apps/Mms/src/com/android/mms/ui/
SearchActivity.java
45
import android.widget.
ListView
;
272
final
ListView
listView
= getListView();
273
listView
.setItemsCanFocus(true);
274
listView
.setFocusable(true);
275
listView
.setClickable(true);
353
//
ListView
seems to want to reject the setFocusable until such time
356
listView
.setFocusable(true);
357
listView
.setFocusableInTouchMode(true);
358
listView
.requestFocus()
[
all
...]
/cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
MessageTestActivity.java
39
import android.widget.
ListView
;
66
private
ListView
mReceivedMessages;
67
private
ListView
mSentMessages;
102
mReceivedMessages = (
ListView
) findViewById(R.id.bt_received_messages);
106
mSentMessages = (
ListView
) findViewById(R.id.bt_sent_messages);
/cts/apps/CtsVerifier/src/com/android/cts/verifier/usb/
UsbAccessoryTestActivity.java
41
import android.widget.
ListView
;
125
ListView
sentMessages = (
ListView
) findViewById(R.id.usb_sent_messages);
126
ListView
receivedMessages = (
ListView
) findViewById(R.id.usb_received_messages);
Completed in 559 milliseconds
<<
21
22
23
24
25
26
27
28
29
30
>>