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.java98 public View findViewById(@IdRes int id) { method in class:AppCompatDialog
99 return getDelegate().findViewById(id);
H A DAppCompatActivity.java192 public View findViewById(@IdRes int id) { method in class:AppCompatActivity
193 return getDelegate().findViewById(id);
H A DAppCompatDelegate.java67 * <li>{@link #findViewById(int)}</li>
295 public abstract View findViewById(@IdRes int id); method in class:AppCompatDelegate
H A DAppCompatDelegateImplV9.java229 public View findViewById(@IdRes int id) { method in class:AppCompatDelegateImplV9
231 return mWindow.findViewById(id);
273 ViewGroup contentParent = (ViewGroup) mSubDecor.findViewById(android.R.id.content);
282 ViewGroup contentParent = (ViewGroup) mSubDecor.findViewById(android.R.id.content);
291 ViewGroup contentParent = (ViewGroup) mSubDecor.findViewById(android.R.id.content);
300 ViewGroup contentParent = (ViewGroup) mSubDecor.findViewById(android.R.id.content);
406 .findViewById(R.id.decor_content_parent);
477 mTitleView = (TextView) subDecor.findViewById(R.id.title);
483 final ContentFrameLayout contentView = (ContentFrameLayout) subDecor.findViewById(
486 final ViewGroup windowContentView = (ViewGroup) mWindow.findViewById(androi
[all...]
/frameworks/base/core/java/android/app/
H A DDialog.java501 public @Nullable View findViewById(@IdRes int id) { method in class:Dialog
502 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);
7183 return Activity.this.findViewById(id);
/frameworks/base/core/java/android/service/dreams/
H A DDreamService.java465 public View findViewById(@IdRes int id) { method in class:DreamService
466 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.java3409 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);
19366 public final View findViewById(@IdRes int id) { method in class:View
19479 * @see #findViewById(int)
19522 * @see #findViewById(int)
23395 * 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
3603 public View findViewById(int id) { method in class:RemoteViews.ViewTree
[all...]

Completed in 3399 milliseconds