OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:listview
(Results
301 - 325
of
1340
) sorted by null
<<
11
12
13
14
15
16
17
18
19
20
>>
/development/samples/MySampleRss/src/com/example/codelab/rssexample/
MyRssReader3.java
28
import android.widget.
ListView
;
37
ListView
mRssList;
51
// Populate ArrayAdapter and bind it to
ListView
52
mRssList = (
ListView
)findViewById(R.id.rssListView);
63
// We'd like to store the current
ListView
selection.
MyRssReader4.java
27
import android.widget.
ListView
;
37
ListView
mRssList;
49
// Populate ArrayAdapter and bind it to
ListView
50
mRssList = (
ListView
)findViewById(R.id.rssListView);
74
// We'd like to store the current
ListView
selection.
/external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/appmenu/
AppMenuTest.java
14
import android.widget.
ListView
;
251
if (popup == null || popup.getListView() == null) return
ListView
.INVALID_POSITION;
252
ListView
listView
= popup.getListView();
253
return
listView
.getSelectedItemPosition();
/frameworks/base/docs/html/sdk/api_diff/4/changes/
android.widget.ListView.html
10
android.widget.
ListView
74
Class android.widget.<A HREF="../../../../reference/android/widget/
ListView
.html" target="_top"><font size="+2"><code>
ListView
</code></font></A>
86
<A NAME="android.widget.
ListView
.getCheckItemIds_added()"></A>
87
<nobr><code>long[]</code> <A HREF="../../../../reference/android/widget/
ListView
.html#getCheckItemIds()" target="_top"><code>getCheckItemIds</code></A>()</nobr>
/packages/apps/Settings/tests/src/com/android/settings/tests/
BluetoothRequestPermissionTest.java
32
import android.widget.
ListView
;
89
ListView
listView
= (
ListView
) findViewById(R.id.msg_container);
90
listView
.setAdapter(mMsgAdapter);
/packages/apps/Mms/src/com/android/mms/ui/
ConversationList.java
67
import android.widget.
ListView
;
143
ListView
listView
= getListView();
144
listView
.setOnCreateContextMenuListener(mConvListOnCreateContextMenuListener);
145
listView
.setOnKeyListener(mThreadListKeyListener);
146
listView
.setChoiceMode(
ListView
.CHOICE_MODE_MULTIPLE_MODAL);
147
listView
.setMultiChoiceModeListener(new ModeCallback());
150
listView
.setEmptyView(findViewById(R.id.empty));
194
ListView
listView = getListView()
[
all
...]
/cts/tests/tests/widget/src/android/widget/cts/
LinearLayoutTest.java
31
import android.widget.
ListView
;
95
ListView
lv1 = new
ListView
(mContext);
99
ListView
lv2 = new
ListView
(mContext);
117
ListView
lv1 = new
ListView
(mContext);
118
ListView
lv2 = new
ListView
(mContext);
119
ListView
lv3 = new ListView(mContext)
[
all
...]
/developers/build/prebuilts/gradle/ActionBarCompat-Styled/Application/src/main/res/values/
styles.xml
39
<item name="dropDownListViewStyle">@style/Widget.Styled.
ListView
.DropDown</item>
77
<style name="Widget.Styled.
ListView
.DropDown"
78
parent="@style/Widget.AppCompat.Light.
ListView
.DropDown">
/developers/samples/android/ui/actionbarcompat/ActionBarCompat-Styled/Application/src/main/res/values/
styles.xml
39
<item name="dropDownListViewStyle">@style/Widget.Styled.
ListView
.DropDown</item>
77
<style name="Widget.Styled.
ListView
.DropDown"
78
parent="@style/Widget.AppCompat.Light.
ListView
.DropDown">
/developers/samples/android/wearable/wear/Notifications/Wearable/src/main/java/com/example/android/notifications/
MainActivity.java
41
WearableListView
listView
= (WearableListView) findViewById(R.id.list);
42
listView
.setAdapter(new Adapter(this));
43
listView
.setClickListener(this);
/development/samples/ApiDemos/src/com/example/android/apis/accessibility/
TaskListView.java
29
import android.widget.
ListView
;
33
/** Acts as a go-between for all AccessibilityEvents sent from items in the
ListView
, providing the
37
public class TaskListView extends
ListView
{
/development/samples/ContactManager/src/com/example/android/contactmanager/
ContactManager.java
31
import android.widget.
ListView
;
40
private
ListView
mContactList;
56
mContactList = (
ListView
) findViewById(R.id.contactList);
/development/samples/Support4Demos/src/com/example/android/supportv4/widget/
SwipeRefreshLayoutActivity.java
31
import android.widget.
ListView
;
83
private
ListView
mList;
100
mList = (
ListView
) findViewById(R.id.content);
/development/samples/browseable/ActionBarCompat-Styled/res/values/
styles.xml
39
<item name="dropDownListViewStyle">@style/Widget.Styled.
ListView
.DropDown</item>
77
<style name="Widget.Styled.
ListView
.DropDown"
78
parent="@style/Widget.AppCompat.Light.
ListView
.DropDown">
/development/samples/training/multiscreen/newsreader/src/com/example/android/newsreader/
HeadlinesFragment.java
25
import android.widget.
ListView
;
119
getListView().setChoiceMode(
ListView
.CHOICE_MODE_SINGLE);
122
getListView().setChoiceMode(
ListView
.CHOICE_MODE_NONE);
/development/samples/wearable/Notifications/Wearable/src/main/java/com/example/android/support/wearable/notifications/
MainActivity.java
41
WearableListView
listView
= (WearableListView) findViewById(R.id.list);
42
listView
.setAdapter(new Adapter(this));
43
listView
.setClickListener(this);
/frameworks/base/core/java/android/widget/
ResourceCursorTreeAdapter.java
39
* @param context The context where the
ListView
associated with this
66
* @param context The context where the
ListView
associated with this
84
* @param context The context where the
ListView
associated with this
/frameworks/base/core/tests/coretests/src/android/widget/focus/
ListOfButtonsTest.java
26
import android.widget.
ListView
;
32
* a {@link
ListView
} that has buttons in it.
39
private
ListView
mListView;
ListOfEditTexts.java
33
private
ListView
mListView;
36
public
ListView
getListView() {
61
mListView = new
ListView
(this);
/frameworks/base/core/tests/coretests/src/android/widget/listview/
ListEmptyViewTest.java
17
package android.widget.
listview
;
26
import android.widget.
ListView
;
30
private
ListView
mListView;
ListFocusableTest.java
17
package android.widget.
listview
;
21
import android.widget.
ListView
;
27
private
ListView
mListView;
/frameworks/base/docs/html/training/improving-layouts/
index.jd
2
page.tags=include,merge,viewstub,
listview
62
<dt><b><a href="smooth-scrolling.html">Making
ListView
Scrolling Smooth</a></b></dt>
63
<dd>If you've built an instance of {@link android.widget.
ListView
} that contains complex or
/frameworks/testing/espresso/espresso-sample/src/main/java/com/google/android/apps/common/testing/ui/testapp/
DrawerActivity.java
30
import android.widget.
ListView
;
52
ListView
drawerList = (
ListView
) findViewById(R.id.drawer_list);
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/category/
CategoryPanel.java
28
import android.widget.
ListView
;
123
ListView
panel = (
ListView
) main.findViewById(R.id.listItems);
/packages/apps/MusicFX/src/com/android/musicfx/
ControlPanelPicker.java
38
import android.widget.
ListView
;
118
public void onPrepareListView(
ListView
listView
) {
Completed in 752 milliseconds
<<
11
12
13
14
15
16
17
18
19
20
>>