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

/frameworks/base/core/java/android/app/
H A DDialog.java458 public View findViewById(int id) { method in class:Dialog
459 return mWindow.findViewById(id);
H A DActivity.java99 * with a layout resource defining your UI, and using {@link #findViewById}
832 * activity's UI, using {@link #findViewById} to programmatically interact
1793 public View findViewById(int id) { method in class:Activity
1794 return getWindow().findViewById(id);
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DKeyguardStatusViewManager.java176 mCarrierView = (TextView) findViewById(R.id.carrier);
177 mDateView = (TextView) findViewById(R.id.date);
178 mStatus1View = (TextView) findViewById(R.id.status1);
179 mAlarmStatusView = (TextView) findViewById(R.id.alarm_status);
180 mOwnerInfoView = (TextView) findViewById(R.id.propertyOf);
181 mTransportView = (TransportControlView) findViewById(R.id.transport);
182 mEmergencyCallButton = (Button) findViewById(R.id.emergencyCallButton);
544 private View findViewById(int id) { method in class:KeyguardStatusViewManager
545 return mContainer.findViewById(id);
/frameworks/base/core/java/android/view/
H A DWindow.java900 public View findViewById(int id) { method in class:Window
901 return getDecorView().findViewById(id);
H A DView.java271 * Button myButton = (Button) findViewById(R.id.my_button);
12243 public final View findViewById(int id) { method in class:View
12350 * @see #findViewById(int)
12390 * @see #findViewById(int)
14830 * View view = findViewById(R.id.view_id);

Completed in 243 milliseconds