Searched refs:getView (Results 1 - 25 of 143) sorted by relevance

123456

/frameworks/base/core/java/android/widget/
H A DAdapter.java99 View getView(int position, View convertView, ViewGroup parent); method in interface:Adapter
105 * {@link #getView(int, View, ViewGroup)}.
113 * Get the type of View that will be created by {@link #getView} for the specified item.
118 * can be converted to the other in {@link #getView}. Note: Integers must be in the
128 * {@link #getView}. Each type represents a set of views that can be
129 * converted in {@link #getView}. If the adapter always returns the same
H A DBaseAdapter.java71 return getView(position, convertView, parent);
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DViewLayersActivity3.java54 public View getView(int position, View convertView, ViewGroup parent) { method in class:ViewLayersActivity3.SimpleListAdapter
55 TextView v = (TextView) super.getView(position, convertView, parent);
H A DListActivity.java112 public View getView(int position, View convertView, ViewGroup parent) { method in class:ListActivity.SimpleListAdapter
113 TextView v = (TextView) super.getView(position, convertView, parent);
H A DTransparentListActivity.java110 public View getView(int position, View convertView, ViewGroup parent) { method in class:TransparentListActivity.SimpleListAdapter
111 TextView v = (TextView) super.getView(position, convertView, parent);
H A DViewLayersActivity2.java57 public View getView(int position, View convertView, ViewGroup parent) { method in class:ViewLayersActivity2.SimpleListAdapter
58 TextView v = (TextView) super.getView(position, convertView, parent);
H A DViewLayersActivity4.java61 public View getView(int position, View convertView, ViewGroup parent) { method in class:ViewLayersActivity4.SimpleListAdapter
62 TextView v = (TextView) super.getView(position, convertView, parent);
H A DStackActivity.java45 public View getView(int position, View convertView, ViewGroup parent) {
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
H A DBaseFragment.java130 if (getView() == null) {
135 final View view = getView();
H A DBaseSupportFragment.java132 if (getView() == null) {
137 final View view = getView();
H A DDetailsFragment.java202 if (getView() != null && getView().getHandler() != null) {
203 getView().getHandler().post(mSetSelectionRunnable);
211 mRowsFragment.getView().requestFocus();
H A DDetailsSupportFragment.java204 if (getView() != null && getView().getHandler() != null) {
205 getView().getHandler().post(mSetSelectionRunnable);
213 mRowsSupportFragment.getView().requestFocus();
H A DHeadersFragment.java141 getView().setVisibility(mHeadersGone ? View.GONE : View.VISIBLE);
207 if (getView() != null) {
208 getView().setBackgroundColor(mBackgroundColor);
214 View fadingView = getView().findViewById(R.id.fade_out_edge);
H A DHeadersSupportFragment.java143 getView().setVisibility(mHeadersGone ? View.GONE : View.VISIBLE);
209 if (getView() != null) {
210 getView().setBackgroundColor(mBackgroundColor);
216 View fadingView = getView().findViewById(R.id.fade_out_edge);
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DColumnAdapter.java88 public View getView(int position, View convertView, ViewGroup parent) { method in class:ColumnAdapter
109 final View item = mWrapped.getView(validPos, convertItem, row);
H A DSectionedListAdapter.java91 public View getView(int position, View convertView, ViewGroup parent) { method in class:SectionedListAdapter
101 return section.getView(position - 1, convertView, parent);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/binding/
H A DFakeAdapter.java111 public View getView(int position, View convertView, ViewGroup parent) { method in class:FakeAdapter
114 Pair<View, Boolean> pair = AdapterHelper.getView(item, null /*parentGroup*/, parent,
/frameworks/support/v13/java/android/support/v13/app/
H A DFragmentPagerAdapter.java120 + " v=" + ((Fragment)object).getView());
151 return ((Fragment)object).getView() == view;
/frameworks/support/v4/java/android/support/v4/app/
H A DFragmentPagerAdapter.java116 + " v=" + ((Fragment)object).getView());
147 return ((Fragment)object).getView() == view;
/frameworks/base/core/tests/coretests/src/android/widget/focus/
H A DListOfButtons.java63 public View getView(int position, View convertView, ViewGroup parent) { method in class:ListOfButtons.MyAdapter
/frameworks/base/core/tests/coretests/src/android/widget/gridview/
H A DGridDelete.java103 public View getView(int position, View convertView, ViewGroup parent) { method in class:GridDelete.DeleteAdapter
/frameworks/base/core/tests/coretests/src/android/widget/listview/
H A DListTakeFocusFromSide.java63 public View getView(int position, View convertView, ViewGroup parent) { method in class:ListTakeFocusFromSide.ThrashListAdapter
/frameworks/base/tests/BiDiTests/src/com/android/bidi/
H A DBiDiTestGalleryImages.java62 public View getView(int position, View convertView, ViewGroup parent) { method in class:BiDiTestGalleryImages
/frameworks/ex/common/tests/src/com/android/common/widget/
H A DCompositeCursorAdapterTest.java100 adapter.getView(i, null, null);
126 adapter.getView(i, null, null);
190 adapter.getView(i, null, null);
214 adapter.getView(i, null, null);
/frameworks/opt/chips/src/com/android/ex/chips/
H A DSingleRecipientArrayAdapter.java47 public View getView(int position, View convertView, ViewGroup parent) { method in class:SingleRecipientArrayAdapter

Completed in 2013 milliseconds

123456