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

1 2 3 4 56 7 8 91011>>

  /development/samples/ApiDemos/src/com/example/android/apis/view/
AutoComplete2.java 38 findViewById(R.id.edit);
LinearLayout9.java 36 ListView list = (ListView) findViewById(R.id.list);
  /frameworks/base/core/tests/coretests/src/android/view/
GlobalFocusChange.java 35 findViewById(R.id.left).getViewTreeObserver().addOnGlobalFocusChangeListener(this);
  /frameworks/base/core/tests/coretests/src/android/widget/focus/
RequestFocus.java 39 final Button bottomRightButton = (Button) findViewById(R.id.bottomRightButton);
  /frameworks/base/tests/ImfTest/tests/src/com/android/imftest/samples/
ButtonActivityTest.java 35 final Button button = (Button) mTargetActivity.findViewById(ButtonActivity.BUTTON_ID);
  /packages/apps/IM/src/com/android/im/app/
SimpleInputActivity.java 60 mPrompt = (TextView) findViewById(R.id.prompt);
67 mEdit = (EditText) findViewById(R.id.edit);
73 mBtnOk = (Button) findViewById(R.id.btnOk);
86 mBtnCancel = (Button) findViewById(R.id.btnCancel);
  /packages/apps/Mms/src/com/android/mms/ui/
SlideListItemView.java 60 mTextPreview = (TextView) findViewById(R.id.text_preview);
62 mImagePreview = (ImageView) findViewById(R.id.image_preview);
63 mAttachmentName = (TextView) findViewById(R.id.attachment_name);
64 mAttachmentIcon = (ImageView) findViewById(R.id.attachment_icon);
  /packages/apps/PackageInstaller/src/com/android/packageinstaller/
UninstallAppProgress.java 101 mStatusTextView = (TextView)findViewById(R.id.center_text);
103 mProgressBar = (ProgressBar) findViewById(R.id.progress_bar);
106 mOkPanel = (View)findViewById(R.id.ok_panel);
107 mOkButton = (Button)findViewById(R.id.ok_button);
  /packages/apps/Phone/src/com/android/phone/
IccMissingPanel.java 38 ((Button) findViewById(R.id.continueView)).setOnClickListener(mButtonListener);
  /packages/apps/Settings/src/com/android/settings/
DateTimeSettingsSetupWizard.java 33 mNextButton = findViewById(R.id.next_button);
BatteryInfo.java 169 mStatus = (TextView)findViewById(R.id.status);
170 mPower = (TextView)findViewById(R.id.power);
171 mLevel = (TextView)findViewById(R.id.level);
172 mScale = (TextView)findViewById(R.id.scale);
173 mHealth = (TextView)findViewById(R.id.health);
174 mTechnology = (TextView)findViewById(R.id.technology);
175 mVoltage = (TextView)findViewById(R.id.voltage);
176 mTemperature = (TextView)findViewById(R.id.temperature);
177 mUptime = (TextView) findViewById(R.id.uptime);
  /packages/apps/SpeechRecorder/src/com/android/speechrecorder/
SpeechRecorderActivity.java 74 mCommand = (TextView) findViewById(R.id.commandText);
75 mStatus = (TextView) findViewById(R.id.statusText);
76 mRecord = (Button) findViewById(R.id.recordButton);
77 mRedo = (Button) findViewById(R.id.redoButton);
78 m8KHz = (RadioButton)findViewById(R.id.codec8KHzRadioButton);
79 m11KHz = (RadioButton)findViewById(R.id.codec11KHzRadioButton);
80 mCall = (RadioButton)findViewById(R.id.callRadioButton);
81 mDialNanp = (RadioButton)findViewById(R.id.dialNanpRadioButton);
82 mDialPairs = (RadioButton)findViewById(R.id.dialPairsRadioButton);
  /packages/apps/Browser/src/com/android/browser/
BrowserDownloadAdapter.java 90 ImageView iv = (ImageView) convertView.findViewById(R.id.download_icon);
110 TextView tv = (TextView) convertView.findViewById(R.id.download_title);
117 tv = (TextView) convertView.findViewById(R.id.domain);
124 View v = convertView.findViewById(R.id.progress_text);
127 v = convertView.findViewById(R.id.download_progress);
130 tv = (TextView) convertView.findViewById(R.id.complete_text);
142 tv = (TextView) convertView.findViewById(R.id.complete_date);
147 tv = (TextView) convertView.findViewById(R.id.progress_text);
150 View progress = convertView.findViewById(R.id.download_progress);
153 View v = convertView.findViewById(R.id.complete_date)
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
ViewAnimatorTest.java 128 final View v1 = mActivity.findViewById(R.id.ok);
129 final View v2 = mActivity.findViewById(R.id.cancel);
130 final View v3 = mActivity.findViewById(R.id.label);
131 final View v4 = mActivity.findViewById(R.id.entry);
190 final View v1 = mActivity.findViewById(R.id.ok);
191 final View v2 = mActivity.findViewById(R.id.cancel);
236 final View v1 = mActivity.findViewById(R.id.ok);
237 final View v2 = mActivity.findViewById(R.id.cancel);
269 final View v1 = mActivity.findViewById(R.id.ok);
270 final View v2 = mActivity.findViewById(R.id.cancel)
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppTransferActivity.java 248 mProgressTransfer = (ProgressBar)mView.findViewById(R.id.progress_transfer);
249 mPercentView = (TextView)mView.findViewById(R.id.progress_percent);
268 mLine1View = (TextView)mView.findViewById(R.id.line1_view);
271 mLine2View = (TextView)mView.findViewById(R.id.line2_view);
274 mLine3View = (TextView)mView.findViewById(R.id.line3_view);
278 mLine5View = (TextView)mView.findViewById(R.id.line5_view);
287 mLine1View = (TextView)mView.findViewById(R.id.line1_view);
290 mLine2View = (TextView)mView.findViewById(R.id.line2_view);
293 mLine3View = (TextView)mView.findViewById(R.id.line3_view);
297 mLine5View = (TextView)mView.findViewById(R.id.line5_view)
    [all...]
  /cts/tests/src/android/widget/cts/
ViewGroupStubActivity.java 39 TextView textView = (TextView)findViewById(com.android.cts.stub.R.id.viewgrouptest_stub);
52 (MockLinearLayout) findViewById(com.android.cts.stub.R.id.
  /development/apps/Development/src/com/android/development/
ProcessInfo.java 38 TextView processNameView = (TextView) findViewById(R.id.process_name);
39 LinearLayout pkgListView = (LinearLayout) findViewById(R.id.package_list);
  /development/samples/ApiDemos/src/com/example/android/apis/app/
Animation.java 47 Button button = (Button)findViewById(R.id.fade_animation);
49 button = (Button)findViewById(R.id.zoom_animation);
NotifyWithText.java 46 button = (Button) findViewById(R.id.short_notify);
67 button = (Button) findViewById(R.id.long_notify);
NotifyingController.java 43 Button button = (Button) findViewById(R.id.notifyStart);
45 button = (Button) findViewById(R.id.notifyStop);
PersistentState.java 85 ((TextView)findViewById(R.id.msg)).setText(R.string.persistent_msg);
88 mSaved = (EditText)findViewById(R.id.saved);
ReceiveResult.java 92 mResults = (TextView)findViewById(R.id.results);
98 Button getButton = (Button)findViewById(R.id.get);
RedirectGetter.java 43 Button applyButton = (Button)findViewById(R.id.apply);
47 mText = (TextView)findViewById(R.id.text);
SendResult.java 53 Button button = (Button)findViewById(R.id.corky);
55 button = (Button)findViewById(R.id.violet);
  /development/samples/ApiDemos/src/com/example/android/apis/os/
MorseCode.java 77 findViewById(R.id.button).setOnClickListener(mClickListener);
80 mTextView = (TextView)findViewById(R.id.text);

Completed in 438 milliseconds

1 2 3 4 56 7 8 91011>>