Searched defs:findViewById (Results 1 - 13 of 13) sorted by relevance

/frameworks/support/v7/preference/src/android/support/v7/preference/
H A DPreferenceViewHolder.java27 * {@link #findViewById(int)}.
38 mCachedViews.put(android.R.id.title, itemView.findViewById(android.R.id.title));
39 mCachedViews.put(android.R.id.summary, itemView.findViewById(android.R.id.summary));
40 mCachedViews.put(android.R.id.icon, itemView.findViewById(android.R.id.icon));
41 mCachedViews.put(R.id.icon_frame, itemView.findViewById(R.id.icon_frame));
43 itemView.findViewById(AndroidResources.ANDROID_R_ICON_FRAME));
48 * yet cached, it falls back to calling {@link View#findViewById(int)} and caches the result.
53 public View findViewById(@IdRes int id) { method in class:PreferenceViewHolder
58 final View v = itemView.findViewById(id);
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DAppCompatDialog.java95 public View findViewById(@IdRes int id) { method in class:AppCompatDialog
96 return getDelegate().findViewById(id);
H A DAppCompatActivity.java182 public View findViewById(@IdRes int id) { method in class:AppCompatActivity
183 return getDelegate().findViewById(id);
H A DAppCompatDelegate.java278 public abstract View findViewById(@IdRes int id); method in class:AppCompatDelegate
H A DAppCompatDelegateImplV7.java228 public View findViewById(@IdRes int id) { method in class:AppCompatDelegateImplV7
230 return mWindow.findViewById(id);
269 ViewGroup contentParent = (ViewGroup) mSubDecor.findViewById(android.R.id.content);
278 ViewGroup contentParent = (ViewGroup) mSubDecor.findViewById(android.R.id.content);
287 ViewGroup contentParent = (ViewGroup) mSubDecor.findViewById(android.R.id.content);
296 ViewGroup contentParent = (ViewGroup) mSubDecor.findViewById(android.R.id.content);
398 .findViewById(R.id.decor_content_parent);
469 mTitleView = (TextView) subDecor.findViewById(R.id.title);
475 final ContentFrameLayout contentView = (ContentFrameLayout) subDecor.findViewById(
478 final ViewGroup windowContentView = (ViewGroup) mWindow.findViewById(androi
[all...]
/frameworks/base/core/java/android/app/
H A DDialog.java495 public @Nullable View findViewById(@IdRes int id) { method in class:Dialog
496 return mWindow.findViewById(id);
H A DActivity.java145 * with a layout resource defining your UI, and using {@link #findViewById}
918 * activity's UI, using {@link #findViewById} to programmatically interact
2322 public View findViewById(@IdRes int id) { method in class:Activity
2323 return getWindow().findViewById(id);
7168 return Activity.this.findViewById(id);
/frameworks/base/core/java/android/service/dreams/
H A DDreamService.java464 public View findViewById(@IdRes int id) { method in class:DreamService
465 return getWindow().findViewById(id);
/frameworks/opt/photoviewer/src/com/android/ex/photo/
H A DPhotoViewController.java81 public View findViewById(int id); method in interface:PhotoViewController.ActivityInterface
313 mRootView = findViewById(getRootViewId());
319 mViewPager = (PhotoViewPager) findViewById(R.id.photo_view_pager);
402 protected View findViewById(int id) { method in class:PhotoViewController
403 return mActivity.findViewById(id);
430 return findViewById(R.id.photo_activity_background);
447 return (ImageView) findViewById(R.id.photo_activity_temporary_image);
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DRecyclerViewLayoutTest.java3258 public void findViewById() throws Throwable { method in class:RecyclerViewLayoutTest
/frameworks/base/core/java/android/view/
H A DWindow.java1261 public View findViewById(@IdRes int id) { method in class:Window
1262 return getDecorView().findViewById(id);
H A DView.java315 * Button myButton = (Button) findViewById(R.id.my_button);
19239 public final View findViewById(@IdRes int id) { method in class:View
19352 * @see #findViewById(int)
19395 * @see #findViewById(int)
23225 * View view = findViewById(R.id.view_id);
/frameworks/base/core/java/android/widget/
H A DRemoteViews.java419 final View view = root.findViewById(viewId);
424 final View emptyView = root.findViewById(emptyViewId);
454 final View target = root.findViewById(viewId);
536 final View target = root.findViewById(viewId);
632 final View target = root.findViewById(viewId);
695 final View target = root.findViewById(viewId);
768 final View target = root.findViewById(viewId);
962 final View target = root.findViewById(viewId);
1024 final View view = root.findViewById(viewId);
1401 final View view = root.findViewById(viewI
3589 public View findViewById(int id) { method in class:RemoteViews.ViewTree
[all...]

Completed in 4586 milliseconds