OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:listview
(Results
351 - 375
of
1727
) sorted by null
<<
11
12
13
14
15
16
17
18
19
20
>>
/frameworks/base/core/tests/coretests/src/android/util/
ListScenario.java
29
import android.widget.
ListView
;
46
private
ListView
mListView;
78
public
ListView
getListView() {
409
* Returns the LinearLayout containing the
ListView
in this scenario.
411
* @return The LinearLayout in which the
ListView
is held.
431
* @return The newly created
ListView
widget.
433
protected
ListView
createListView() {
434
return new
ListView
(this);
445
* Sets an adapter on a
ListView
.
447
* @param
listView
The ListView to set the adapter on
[
all
...]
/development/samples/devbytes/telephony/SmsSampleProject/app/src/main/java/com/example/android/smssample/
MainActivity.java
37
import android.widget.
ListView
;
72
ListView
listView
= (
ListView
) findViewById(android.R.id.list);
73
listView
.setEmptyView(findViewById(android.R.id.empty));
82
// Create adapter and set it to our
ListView
88
listView
.setAdapter(mAdapter);
/frameworks/base/core/java/com/android/internal/view/menu/
StandardMenuPopup.java
31
import android.widget.
ListView
;
181
ListView
listView
= mPopup.getListView();
182
listView
.setOnKeyListener(this);
188
listView
,
196
listView
.addHeaderView(titleItemView, null, false);
332
public
ListView
getListView() {
/frameworks/support/v7/appcompat/src/android/support/v7/view/menu/
StandardMenuPopup.java
34
import android.widget.
ListView
;
162
final
ListView
listView
= mPopup.getListView();
163
listView
.setOnKeyListener(this);
168
R.layout.abc_popup_menu_header_item_layout,
listView
, false);
174
listView
.addHeaderView(titleItemView, null, false);
311
public
ListView
getListView() {
/cts/tests/tests/widget/src/android/widget/cts/
ListPopupWindowTest.java
43
import android.widget.
ListView
;
205
final
ListView
listView
= mPopupWindow.getListView();
213
listView
.getLocationOnScreen(listViewOnScreenXY);
215
listView
.getLocationInWindow(listViewInWindowXY);
221
expectedListViewOnScreenX -= (
listView
.getWidth() - upperAnchor.getWidth());
479
final
ListView
listView
= mPopupWindow.getListView();
480
ViewTestUtils.runOnMainAndDrawSync(mInstrumentation,
listView
, null);
482
final View firstListChild =
listView
.getChildAt(0)
[
all
...]
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
RowsFragment.java
198
VerticalGridView
listView
= getVerticalGridView();
199
if (
listView
!= null) {
200
final int count =
listView
.getChildCount();
203
View view =
listView
.getChildAt(i);
205
= (ItemBridgeAdapter.ViewHolder)
listView
.getChildViewHolder(view);
216
VerticalGridView
listView
= getVerticalGridView();
217
if (
listView
!= null) {
218
final int count =
listView
.getChildCount();
220
View view =
listView
.getChildAt(i);
222
listView
.getChildViewHolder(view)
[
all
...]
RowsSupportFragment.java
200
VerticalGridView
listView
= getVerticalGridView();
201
if (
listView
!= null) {
202
final int count =
listView
.getChildCount();
205
View view =
listView
.getChildAt(i);
207
= (ItemBridgeAdapter.ViewHolder)
listView
.getChildViewHolder(view);
218
VerticalGridView
listView
= getVerticalGridView();
219
if (
listView
!= null) {
220
final int count =
listView
.getChildCount();
222
View view =
listView
.getChildAt(i);
224
listView
.getChildViewHolder(view)
[
all
...]
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowAlertDialog.java
13
import android.widget.
ListView
;
44
private
ListView
listView
;
137
public
ListView
getListView() {
138
if (
listView
== null) {
139
listView
= new
ListView
(context);
140
listView
.setOnItemClickListener(new AdapterView.OnItemClickListener() {
155
return
listView
;
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
WordListPreference.java
26
import android.widget.
ListView
;
265
if (!(parent instanceof
ListView
)) return;
266
final
ListView
listView
= (
ListView
)parent;
279
indexToOpen =
listView
.indexOfChild(v);
282
listView
.getLastVisiblePosition() -
listView
.getFirstVisiblePosition();
285
final ButtonSwitcher buttonSwitcher = (ButtonSwitcher)
listView
.getChildAt(i)
/cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
BleClientStartActivity.java
36
import android.widget.
ListView
;
55
ListView
listView
= (
ListView
) findViewById(R.id.ble_server_tests);
56
listView
.setAdapter(mTestAdapter);
BleServerStartActivity.java
35
import android.widget.
ListView
;
54
ListView
listView
= (
ListView
) findViewById(R.id.ble_server_tests);
55
listView
.setAdapter(mTestAdapter);
DevicePickerActivity.java
36
import android.widget.
ListView
;
74
ListView
pairedDevicesListView = (
ListView
) findViewById(R.id.bt_paired_devices);
82
ListView
newDevicesListView = (
ListView
) findViewById(R.id.bt_new_devices);
/cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/
P2pTestListActivity.java
29
import android.widget.
ListView
;
124
* Launch the activity when its {@link
ListView
} item is clicked.
128
protected void handleItemClick(
ListView
listView
, View view, int position, long id) {
133
super.handleItemClick(
listView
, view, position, id);
/development/samples/ApiDemos/src/com/example/android/apis/animation/
Transition3d.java
7
import android.widget.
ListView
;
20
*
ListView
and an ImageView. When the user clicks the list, it flips to
29
private
ListView
mPhotosList;
59
mPhotosList = (
ListView
) findViewById(android.R.id.list);
63
// Prepare the
ListView
/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.
/packages/apps/Messaging/src/com/android/messaging/ui/debug/
DebugMmsConfigFragment.java
29
import android.widget.
ListView
;
53
final
ListView
listView
= (
ListView
) fragmentView.findViewById(android.R.id.list);
63
listView
.setAdapter(new MmsConfigAdapter(getActivity(), subIdArray[position]));
/packages/apps/Settings/tests/app/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);
/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/build/prebuilts/gradle/DataLayer/Wearable/src/main/java/com/example/android/wearable/datalayer/fragments/
DataFragment.java
27
import android.widget.
ListView
;
46
ListView
dataItemList = (
ListView
) view.findViewById(R.id.dataItem_list);
/developers/build/prebuilts/gradle/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);
/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/DataLayer/Wearable/src/main/java/com/example/android/wearable/datalayer/fragments/
DataFragment.java
27
import android.widget.
ListView
;
46
ListView
dataItemList = (
ListView
) view.findViewById(R.id.dataItem_list);
/developers/samples/android/wearable/wear/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);
/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
{
Completed in 4686 milliseconds
<<
11
12
13
14
15
16
17
18
19
20
>>