HomeSort by relevance Sort by last modified time
    Searched refs:findViewById (Results 326 - 350 of 714) sorted by null

<<11121314151617181920>>

  /packages/apps/Settings/src/com/android/settings/
Display.java 42 mFontSize = (Spinner) findViewById(R.id.fontSize);
55 mPreview = (TextView) findViewById(R.id.preview);
58 Button save = (Button) findViewById(R.id.save);
  /packages/apps/Stk/src/com/android/stk/
StkDialogActivity.java 78 .findViewById(R.id.dialog_message);
80 Button okButton = (Button) findViewById(R.id.button_ok);
81 Button cancelButton = (Button) findViewById(R.id.button_cancel);
  /development/samples/ApiDemos/src/com/example/android/apis/app/
RemoteService.java 217 Button button = (Button)findViewById(R.id.start);
219 button = (Button)findViewById(R.id.stop);
279 Button button = (Button)findViewById(R.id.bind);
281 button = (Button)findViewById(R.id.unbind);
283 mKillButton = (Button)findViewById(R.id.kill);
287 mCallbackText = (TextView)findViewById(R.id.callback);
QuickContactsDemo.java 93 cache.nameView = (TextView) view.findViewById(R.id.name);
94 cache.photoView = (QuickContactBadge) view.findViewById(R.id.badge);
  /development/samples/BluetoothChat/src/com/example/android/BluetoothChat/
BluetoothChat.java 94 mTitle = (TextView) findViewById(R.id.title_left_text);
96 mTitle = (TextView) findViewById(R.id.title_right_text);
147 mConversationView = (ListView) findViewById(R.id.in);
151 mOutEditText = (EditText) findViewById(R.id.edit_text_out);
155 mSendButton = (Button) findViewById(R.id.button_send);
159 TextView view = (TextView) findViewById(R.id.edit_text_out);
  /frameworks/base/services/java/com/android/server/status/
UsbStorageActivity.java 108 mIcon = (ImageView) findViewById(com.android.internal.R.id.icon);
109 mBanner = (TextView) findViewById(com.android.internal.R.id.banner);
110 mMessage = (TextView) findViewById(com.android.internal.R.id.message);
112 mMountButton = (Button) findViewById(com.android.internal.R.id.mount_button);
114 mUnmountButton = (Button) findViewById(com.android.internal.R.id.unmount_button);
116 mProgressBar = (ProgressBar) findViewById(com.android.internal.R.id.progress);
  /frameworks/policies/base/mid/com/android/internal/policy/impl/
GlobalActions.java 311 ImageView icon = (ImageView) v.findViewById(R.id.icon);
312 TextView messageView = (TextView) v.findViewById(R.id.message);
314 v.findViewById(R.id.status).setVisibility(View.GONE);
364 ImageView icon = (ImageView) v.findViewById(R.id.icon);
365 TextView messageView = (TextView) v.findViewById(R.id.message);
366 TextView statusView = (TextView) v.findViewById(R.id.status);
  /frameworks/policies/base/phone/com/android/internal/policy/impl/
AccountUnlockScreen.java 96 mTopHeader = (TextView) findViewById(R.id.topHeader);
101 mInstructions = (TextView) findViewById(R.id.instructions);
103 mLogin = (EditText) findViewById(R.id.login);
107 mPassword = (EditText) findViewById(R.id.password);
110 mOk = (Button) findViewById(R.id.ok);
113 mEmergencyCall = (Button) findViewById(R.id.emergencyCall);
  /packages/apps/Calendar/src/com/android/calendar/
MonthActivity.java 94 TextView title = (TextView) findViewById(R.id.title);
135 TextView title = (TextView) findViewById(R.id.title);
236 final TextView label = (TextView) findViewById(DAY_OF_WEEK_LABEL_IDS[day]);
246 TextView title = (TextView) findViewById(R.id.title);
250 mProgressBar = (ProgressBar) findViewById(R.id.progress_circular);
252 mSwitcher = (ViewSwitcher) findViewById(R.id.switcher);
  /packages/apps/IM/src/com/android/im/app/
PreferenceActivity.java 66 mRgDataChannel = (RadioGroup) findViewById(R.id.rgDataChannel);
67 mRgDataEncoding = (RadioGroup) findViewById(R.id.rgDataEncoding);
68 mRgCirChannel = (RadioGroup) findViewById(R.id.rgCirChannel);
69 mEdtHost = (EditText) findViewById(R.id.etHost);
70 mEdtMsisdn = (EditText) findViewById(R.id.etMsisdn);
103 final Button btnSave = (Button) findViewById(R.id.btnSave);
  /packages/apps/Music/src/com/android/music/
MediaPickerActivity.java 244 ImageView iv = (ImageView) v.findViewById(R.id.icon);
250 TextView tv = (TextView) v.findViewById(R.id.duration);
252 iv = (ImageView) v.findViewById(R.id.play_indicator);
261 TextView tv = (TextView) view.findViewById(R.id.line1);
265 tv = (TextView) view.findViewById(R.id.line2);
283 ImageView iv = (ImageView) view.findViewById(R.id.icon);;
  /cts/tests/tests/widget/src/android/widget/cts/
MediaControllerTest.java 145 View videoview = mActivity.findViewById(R.id.mediacontroller_videoview);
156 videoview = mActivity.findViewById(R.id.mediacontroller_videoview);
199 (VideoView) mActivity.findViewById(R.id.mediacontroller_videoview);
286 (VideoView) mActivity.findViewById(R.id.mediacontroller_videoview);
326 (VideoView) mActivity.findViewById(R.id.mediacontroller_videoview);
367 (VideoView) mActivity.findViewById(R.id.mediacontroller_videoview);
400 final View videoView = mActivity.findViewById(R.id.mediacontroller_videoview);
427 final View videoView = mActivity.findViewById(R.id.mediacontroller_videoview);
  /development/samples/ApiDemos/src/com/example/android/apis/appwidget/
ExampleAppWidgetConfigure.java 64 mAppWidgetPrefix = (EditText)findViewById(R.id.appwidget_prefix);
67 findViewById(R.id.save_button).setOnClickListener(mOnClickListener);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
Animation3.java 45 Spinner s = (Spinner) findViewById(R.id.spinner);
54 final View target = findViewById(R.id.target);
  /development/samples/LunarLander/src/com/example/android/lunarlander/
LunarLander.java 131 mLunarView = (LunarView) findViewById(R.id.lunar);
135 mLunarView.setTextView((TextView) findViewById(R.id.text));
  /development/samples/SpinnerTest/src/com/android/example/spinner/test/
SpinnerActivityTest.java 135 mSpinner = (Spinner)mActivity.findViewById(com.android.example.spinner.R.id.Spinner01);
223 (TextView) mActivity.findViewById(com.android.example.spinner.R.id.SpinnerResult);
  /frameworks/base/core/java/android/app/
ExpandableListActivity.java 219 View emptyView = findViewById(com.android.internal.R.id.empty);
220 mList = (ExpandableListView)findViewById(com.android.internal.R.id.list);
  /frameworks/base/core/java/android/widget/
MediaController.java 195 mPauseButton = (ImageButton) v.findViewById(com.android.internal.R.id.pause);
201 mFfwdButton = (ImageButton) v.findViewById(com.android.internal.R.id.ffwd);
209 mRewButton = (ImageButton) v.findViewById(com.android.internal.R.id.rew);
218 mNextButton = (ImageButton) v.findViewById(com.android.internal.R.id.next);
222 mPrevButton = (ImageButton) v.findViewById(com.android.internal.R.id.prev);
227 mProgress = (ProgressBar) v.findViewById(com.android.internal.R.id.mediacontroller_progress);
236 mEndTime = (TextView) v.findViewById(com.android.internal.R.id.time);
237 mCurrentTime = (TextView) v.findViewById(com.android.internal.R.id.time_current);
  /frameworks/base/core/tests/coretests/src/android/widget/focus/
ListWithMailMessages.java 136 TextView subject = (TextView) messageUi.findViewById(R.id.subject);
139 WebView body = (WebView) messageUi.findViewById(R.id.body);
  /frameworks/base/core/tests/coretests/src/android/widget/gridview/
GridThrasher.java 118 mText = (TextView) findViewById(R.id.text);
120 GridView g = (GridView) findViewById(R.id.grid);
  /frameworks/base/tests/BatteryWaster/src/com/android/batterywaster/
BatteryWaster.java 52 findViewById(R.id.checkbox).setOnClickListener(mClickListener);
53 mLog = (TextView)findViewById(R.id.log);
  /packages/apps/AccountsAndSyncSettings/src/com/android/settings/
AccountPreference.java 77 mProviderIconView = (ImageView) view.findViewById(R.id.providerIcon);
79 mSyncStatusIcon = (ImageView) view.findViewById(R.id.syncStatusIcon);
  /packages/apps/AlarmClock/src/com/android/alarmclock/
ClockPicker.java 52 mGallery = (Gallery) findViewById(R.id.gallery);
61 mClockLayout = (ViewGroup) findViewById(R.id.clock_layout);
  /packages/apps/Calculator/tests/src/com/android/calculator2/
CalculatorHitSomeButtons.java 122 View view = mActivity.findViewById(id);
131 CalculatorDisplay display = (CalculatorDisplay) mActivity.findViewById(R.id.display);
  /packages/apps/Email/src/com/android/email/
EmailAddressAdapter.java 64 TextView text1 = (TextView)view.findViewById(R.id.text1);
65 TextView text2 = (TextView)view.findViewById(R.id.text2);

Completed in 9910 milliseconds

<<11121314151617181920>>