Searched refs:findViewById (Results 376 - 394 of 394) sorted by relevance

<<111213141516

/frameworks/support/v4/java/android/support/v4/app/
H A DFragment.java1463 public View findViewById(int id) {
1467 return mView.findViewById(id);
H A DFragmentManager.java389 public View findViewById(int id); method in interface:FragmentContainer
917 container = (ViewGroup)mContainer.findViewById(f.mContainerId);
/frameworks/base/core/java/android/inputmethodservice/
H A DKeyboardView.java1093 mMiniKeyboard = (KeyboardView) mMiniKeyboardContainer.findViewById(
1095 View closeButton = mMiniKeyboardContainer.findViewById(
1136 mMiniKeyboard = (KeyboardView) mMiniKeyboardContainer.findViewById(
/frameworks/base/core/java/android/widget/
H A DNumberPicker.java658 mIncrementButton = (ImageButton) findViewById(R.id.increment);
667 mDecrementButton = (ImageButton) findViewById(R.id.decrement);
675 mInputText = (EditText) findViewById(R.id.numberpicker_input);
H A DRelativeLayout.java429 ignore = findViewById(mIgnoreGravity);
H A DListView.java3589 * @see android.view.View#findViewById(int)
3622 v = v.findViewById(id);
/frameworks/base/core/java/android/app/
H A DActivity.java104 * with a layout resource defining your UI, and using {@link #findViewById}
726 public View findViewById(int id) {
727 return Activity.this.findViewById(id);
862 * activity's UI, using {@link #findViewById} to programmatically interact
1883 public View findViewById(int id) { method in class:Activity
1884 return getWindow().findViewById(id);
H A DFragmentManager.java394 public View findViewById(int id); method in interface:FragmentContainer
880 container = (ViewGroup)mContainer.findViewById(f.mContainerId);
/frameworks/base/core/java/android/appwidget/
H A DAppWidgetHostView.java449 View v = findViewById(viewId);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPanelView.java375 mHandleView = findViewById(R.id.handle);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DRenderSessionImpl.java1306 View v = tabHost.findViewById(android.R.id.tabs);
1319 v = tabHost.findViewById(android.R.id.tabcontent);
/frameworks/base/services/java/com/android/server/
H A DInputMethodManagerService.java599 mSwitchingDialogTitleView.findViewById(
2681 mSwitchingDialogTitleView.findViewById(
2685 final Switch hardKeySwitch = ((Switch)mSwitchingDialogTitleView.findViewById(
2832 final TextView firstTextView = (TextView)view.findViewById(android.R.id.text1);
2833 final TextView secondTextView = (TextView)view.findViewById(android.R.id.text2);
2843 (RadioButton)view.findViewById(com.android.internal.R.id.radio);
/frameworks/base/core/java/android/transition/
H A DTransition.java1002 View view = sceneRoot.findViewById(id);
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardWidgetPager.java873 View addWidget = findViewById(R.id.keyguard_add_widget);
H A DSlidingChallengeLayout.java854 mHasGlowpad = child.findViewById(R.id.keyguard_selector_view) != null;
/frameworks/base/core/java/android/view/
H A DViewDebug.java450 return root.getRootView().findViewById(id);
H A DViewGroup.java3258 v = v.findViewById(id);
H A DView.java287 * Button myButton = (Button) findViewById(R.id.my_button);
16024 public final View findViewById(int id) { method in class:View
16133 * @see #findViewById(int)
16176 * @see #findViewById(int)
19204 * View view = findViewById(R.id.view_id);
/frameworks/ex/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java2840 Button button = (Button)mCopyDialog.findViewById(android.R.id.button1);

Completed in 2062 milliseconds

<<111213141516