HomeSort by relevance Sort by last modified time
    Searched defs:findViewById (Results 1 - 25 of 46) sorted by null

1 2

  /device/google/accessory/demokit/app/src/com/google/android/DemoKit/
AccessoryController.java 14 protected View findViewById(int id) {
15 return mHostActivity.findViewById(id);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
SecureViewOverlay.java 53 spoofLayout(findViewById(R.id.secure_view_overlay_description),
54 mActivity.findViewById(R.id.secure_view_description));
55 spoofLayout(findViewById(R.id.secure_view_overlay_button1),
56 mActivity.findViewById(R.id.secure_view_unsecure_button));
57 spoofLayout(findViewById(R.id.secure_view_overlay_button2),
58 mActivity.findViewById(R.id.secure_view_builtin_secure_button));
59 spoofLayout(findViewById(R.id.secure_view_overlay_button3),
60 mActivity.findViewById(R.id.secure_view_custom_secure_button));
  /development/samples/ApiDemos/src/com/example/android/apis/app/
FragmentContextMenu.java 53 registerForContextMenu(root.findViewById(R.id.long_press));
  /development/samples/Support4Demos/src/com/example/android/supportv4/app/
FragmentContextMenuSupport.java 54 registerForContextMenu(root.findViewById(R.id.long_press));
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
NotificationPanelTitle.java 50 buttons.add(mSettingsButton = findViewById(R.id.settings_button));
51 buttons.add(findViewById(R.id.notification_button));
  /gdk/samples/PhotoEditor/src/com/android/photoeditor/
ToolbarIdleHandler.java 46 * views; then its child views could be found by findViewById calls.
77 childViews.add(toolbar.findViewById(R.id.effects_container));
  /packages/apps/Email/tests/src/com/android/email/activity/
UiUtilitiesTests.java 85 // Unfortunately View.findViewById is final, so can't use the same approach.
120 public View findViewById(int id) {
  /sdk/chimpchat/src/com/android/chimpchat/hierarchyviewer/
HierarchyViewer.java 71 public ViewNode findViewById(String id) {
77 return findViewById(id, rootNode);
87 public ViewNode findViewById(String id, ViewNode rootNode) {
93 ViewNode found = findViewById(id,child);
  /development/samples/AppNavigation/src/com/example/android/appnavigation/app/
AppNavHomeActivity.java 113 convertView.setTag(convertView.findViewById(android.R.id.text1));
  /development/samples/SupportAppNavigation/src/com/example/android/support/appnavigation/app/
AppNavHomeActivity.java 113 convertView.setTag(convertView.findViewById(android.R.id.text1));
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
ViewPropertyAlphaActivity.java 63 EditText selectedText = (EditText) findViewById(R.id.selectedtext);
68 Button invalidator = (Button) findViewById(R.id.invalidateButton);
72 findViewById(R.id.textview).invalidate();
73 findViewById(R.id.spantext).invalidate();
77 TextView textView = (TextView) findViewById(R.id.spantext);
96 LinearLayout container = (LinearLayout) findViewById(R.id.container);
113 startAnim(findViewById(id));
  /packages/apps/Email/src/com/android/email/activity/
UiUtilities.java 70 /** Generics version of {@link Activity#findViewById} */
73 return (T) parent.findViewById(viewId);
76 /** Generics version of {@link View#findViewById} */
79 return (T) parent.findViewById(viewId);
83 * Same as {@link Activity#findViewById}, but crashes if there's no view.
87 return (T) checkView(parent.findViewById(viewId));
91 * Same as {@link View#findViewById}, but crashes if there's no view.
95 return (T) checkView(parent.findViewById(viewId));
118 setVisibilitySafe(parent.findViewById(viewId), visibility);
125 setVisibilitySafe(parent.findViewById(viewId), visibility)
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
SimpleExpandableListAdapterTest.java 170 assertEquals("child00", ((TextView) result.findViewById(R.id.text1)).getText().toString());
174 assertEquals("child30", ((TextView) result.findViewById(R.id.text1)).getText().toString());
185 assertEquals("child00", ((TextView) result.findViewById(R.id.text1)).getText().toString());
189 assertEquals("child30", ((TextView) result.findViewById(R.id.text1)).getText().toString());
234 assertNotNull(result.findViewById(R.id.text1));
238 assertNotNull(result.findViewById(R.id.text1));
249 assertNotNull(result.findViewById(R.id.text1));
253 assertNotNull(result.findViewById(R.id.text1));
319 assertEquals("group00", ((TextView) result.findViewById(R.id.text1)).getText().toString());
323 assertEquals("group30", ((TextView) result.findViewById(R.id.text1)).getText().toString())
    [all...]
RemoteViewsTest.java 111 View view = mResult.findViewById(R.id.remoteView_chronometer);
128 TextView textView = (TextView) mResult.findViewById(R.id.remoteView_text);
150 ImageView image = (ImageView) mResult.findViewById(R.id.remoteView_image);
178 ImageView image = (ImageView) mResult.findViewById(R.id.remoteView_image);
203 Chronometer chronometer = (Chronometer) mResult.findViewById(R.id.remoteView_chronometer);
233 ProgressBar progress = (ProgressBar) mResult.findViewById(R.id.remoteView_progress);
263 assertNotNull(mResult.findViewById(R.id.remoteViews_good));
264 assertNotNull(mResult.findViewById(R.id.remoteView_absolute));
265 assertNotNull(mResult.findViewById(R.id.remoteView_chronometer));
266 assertNotNull(mResult.findViewById(R.id.remoteView_frame))
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppTransferHistory.java 86 mListView = (ListView)findViewById(R.id.list);
87 mListView.setEmptyView(findViewById(R.id.empty));
  /packages/wallpapers/LivePicker/src/com/android/wallpaper/livepicker/
LiveWallpaperActivity.java 135 (AdapterView<BaseAdapter>) layout.findViewById(android.R.id.list);
138 adapterView.setEmptyView(layout.findViewById(android.R.id.empty));
  /frameworks/base/core/java/android/service/dreams/
Dream.java 307 public View findViewById(int id) {
308 return getWindow().findViewById(id);
  /packages/apps/Camera/tests/src/com/android/camera/activity/
CameraTestCase.java 85 getActivity().findViewById(R.id.gl_root_view).postDelayed(runnable, 50);
102 getActivity().findViewById(R.id.gl_root_view).postDelayed(runnable, 50);
214 assertNotNull(activity.findViewById(id));
219 View v = getActivity().findViewById(id);
237 assertNull(activity.findViewById(id));
243 View view = activity.findViewById(id);
  /packages/apps/Mms/src/com/android/mms/ui/
SlideshowActivity.java 175 mSlideView = (SlideView) findViewById(R.id.slide_view);
243 mMediaController.setAnchorView(findViewById(R.id.slide_view));
  /packages/apps/Contacts/tests/src/com/android/contacts/calllog/
CallLogFragmentTest.java 173 assertNotNull(view.findViewById(R.id.secondary_action_icon));
182 assertNotNull(view.findViewById(R.id.secondary_action_icon));
191 assertNotNull(view.findViewById(R.id.secondary_action_icon));
  /packages/apps/MusicFX/src/com/android/musicfx/
ActivityMusic.java 261 final ViewGroup viewGroup = (ViewGroup) findViewById(R.id.contentSoundEffects);
303 findViewById(R.id.vILayout).setOnTouchListener(new OnTouchListener() {
314 final SeekBar seekbar = (SeekBar) findViewById(R.id.vIStrengthSeekBar);
355 findViewById(R.id.bBLayout).setOnTouchListener(new OnTouchListener() {
366 final SeekBar seekbar = (SeekBar) findViewById(R.id.bBStrengthSeekBar);
412 equalizerSpinnerInit((Spinner)findViewById(R.id.eqSpinner));
413 equalizerBandsInit(findViewById(R.id.eqcontainer));
422 reverbSpinnerInit((Spinner)findViewById(R.id.prSpinner));
427 ((TextView) findViewById(R.id.noEffectsTextView)).setVisibility(View.VISIBLE);
553 setEnabledAllChildren((ViewGroup) findViewById(R.id.contentSoundEffects), isEnabled)
    [all...]
  /frameworks/base/policy/src/com/android/internal/policy/impl/
KeyguardStatusViewManager.java 179 mCarrierView = (TextView) findViewById(R.id.carrier);
180 mDateView = (TextView) findViewById(R.id.date);
181 mStatus1View = (TextView) findViewById(R.id.status1);
182 mAlarmStatusView = (TextView) findViewById(R.id.alarm_status);
183 mOwnerInfoView = (TextView) findViewById(R.id.propertyOf);
184 mTransportView = (TransportControlView) findViewById(R.id.transport);
185 mEmergencyCallButton = (Button) findViewById(R.id.emergencyCallButton);
187 mDigitalClock = (DigitalClock) findViewById(R.id.time);
561 private View findViewById(int id) {
562 return mContainer.findViewById(id)
    [all...]
  /cts/tests/tests/app/src/android/app/cts/
DialogTest.java 245 assertNotNull(d.findViewById(R.id.username_view));
246 assertNotNull(d.findViewById(R.id.username_edit));
247 assertNotNull(d.findViewById(R.id.password_view));
248 assertNotNull(d.findViewById(R.id.password_edit));
261 assertNotNull(d.findViewById(R.id.username_view));
262 assertNotNull(d.findViewById(R.id.username_edit));
263 assertNull(d.findViewById(R.id.password_view));
264 assertNull(d.findViewById(R.id.password_edit));
278 assertNotNull(d.findViewById(R.id.username_view));
279 assertNotNull(d.findViewById(R.id.username_edit))
    [all...]
  /frameworks/base/core/java/android/app/
Dialog.java 456 public View findViewById(int id) {
457 return mWindow.findViewById(id);
    [all...]
  /frameworks/base/core/java/android/view/
Window.java     [all...]

Completed in 897 milliseconds

1 2