Searched refs:mView (Results 1 - 25 of 56) sorted by relevance

123

/packages/apps/Contacts/tests/src/com/android/contacts/format/
H A DPrefixHighligherTest.java35 private TextView mView; field in class:PrefixHighligherTest
41 mView = new TextView(getContext());
44 mView.setText("", TextView.BufferType.SPANNABLE);
48 mPrefixHighlighter.setText(mView, "", new char[0]);
49 SpannedTestUtils.checkHtmlText("", mView);
51 mPrefixHighlighter.setText(mView, "test", new char[0]);
52 SpannedTestUtils.checkHtmlText("test", mView);
56 mPrefixHighlighter.setText(mView, "test", "TE".toCharArray());
57 SpannedTestUtils.checkHtmlText(START + "te" + END + "st", mView);
59 mPrefixHighlighter.setText(mView, "Tes
[all...]
/packages/wallpapers/Basic/src/com/android/wallpaper/fall/
H A DFall.java23 private FallView mView; field in class:Fall
29 mView = new FallView(this);
30 setContentView(mView);
36 mView.resume();
42 mView.pause();
/packages/wallpapers/Basic/src/com/android/wallpaper/galaxy/
H A DGalaxy.java24 private GalaxyView mView; field in class:Galaxy
30 mView = new GalaxyView(this);
31 setContentView(mView);
37 mView.resume();
43 mView.pause();
/packages/wallpapers/Basic/src/com/android/wallpaper/grass/
H A DGrass.java24 private GrassView mView; field in class:Grass
30 mView = new GrassView(this);
31 setContentView(mView);
37 mView.resume();
43 mView.pause();
/packages/wallpapers/HoloSpiral/src/com/android/wallpaper/holospiral/
H A DHoloSpiralTestActivity.java23 private HoloSpiralView mView; field in class:HoloSpiralTestActivity
28 mView = new HoloSpiralView(this);
29 setContentView(mView);
35 mView.onResume();
41 mView.onPause();
/packages/wallpapers/Galaxy4/src/com/android/galaxy4/
H A DGalaxy4.java8 private GalaxyView mView; field in class:Galaxy4
13 mView = new GalaxyView(this);
14 setContentView(mView);
/packages/wallpapers/NoiseField/src/com/android/noisefield/
H A DNoiseField.java8 private NoiseFieldView mView; field in class:NoiseField
13 mView = new NoiseFieldView(this);
14 setContentView(mView);
/packages/wallpapers/PhaseBeam/src/com/android/phasebeam/
H A DPhaseBeam.java8 private PhaseBeamView mView; field in class:PhaseBeam
13 mView = new PhaseBeamView(this);
14 setContentView(mView);
/packages/apps/CertInstaller/src/com/android/certinstaller/
H A DViewHelper.java26 private View mView; field in class:ViewHelper
29 mView = view;
33 TextView v = (TextView) mView.findViewById(R.id.error);
39 return ((TextView) mView.findViewById(viewId)).getText().toString();
44 TextView v = (TextView) mView.findViewById(viewId);
49 TextView v = (TextView) mView.findViewById(viewId);
/packages/apps/Mms/src/com/android/mms/ui/
H A DPresenter.java30 protected ViewInterface mView; field in class:Presenter
35 mView = view;
42 return mView;
46 mView = view;
/packages/apps/Contacts/tests/src/com/android/contacts/detail/
H A DStreamItemAdapterTest.java40 private View mView; field in class:StreamItemAdapterTest
70 mView = mAdapter.getView(0, null, null);
94 mView.performClick();
101 mView.performClick();
107 assertNotNull("should have a stream item", mView);
108 assertTrue("should be focusable", mView.isFocusable());
113 assertNotNull("should have a stream item", mView);
114 assertFalse("should not be focusable", mView.isFocusable());
119 Object tag = mView.getTag();
129 Object tag = mView
[all...]
/packages/apps/Contacts/src/com/android/contacts/voicemail/
H A DVoicemailPlaybackPresenter.java154 private final PlaybackView mView; field in class:VoicemailPlaybackPresenter
178 mView = view;
188 mView.setVolumeControlStream(PLAYBACK_STREAM);
204 mView.setIsFetchingContent();
208 return mView.queryHasContent(mVoicemailUri);
239 mView.registerContentObserver(mVoicemailUri, mFetchResultHandler);
241 mView.sendFetchVoicemailRequest(mVoicemailUri);
261 mView.unregisterContentObserver(FetchResultHandler.this);
262 mView.setFetchContentTimeout();
268 mView
[all...]
/packages/apps/Browser/src/com/android/browser/view/
H A DPieItem.java29 private View mView; field in class:PieItem
40 mView = view;
45 mView = view;
52 if (mView != null) {
53 mView.setSelected(s);
94 return mView;
/packages/apps/Settings/src/com/android/settings/
H A DOwnerInfoSettings.java32 private View mView; field in class:OwnerInfoSettings
39 mView = inflater.inflate(R.layout.ownerinfo, container, false);
40 initView(mView);
41 return mView;
49 mCheckbox = (CheckBox) mView.findViewById(R.id.show_owner_info_on_lockscreen_checkbox);
50 mEditText = (EditText) mView.findViewById(R.id.owner_info_edit_text);
/packages/apps/Settings/src/com/android/settings/vpn2/
H A DVpnDialog.java48 private View mView; field in class:VpnDialog
77 mView = getLayoutInflater().inflate(R.layout.vpn_dialog, null);
78 setView(mView);
84 mName = (TextView) mView.findViewById(R.id.name);
85 mType = (Spinner) mView.findViewById(R.id.type);
86 mServer = (TextView) mView.findViewById(R.id.server);
87 mUsername = (TextView) mView.findViewById(R.id.username);
88 mPassword = (TextView) mView.findViewById(R.id.password);
89 mSearchDomains = (TextView) mView.findViewById(R.id.search_domains);
90 mDnsServers = (TextView) mView
[all...]
/packages/apps/Camera/src/com/android/camera/
H A DOnScreenHint.java49 View mView; field in class:OnScreenHint
140 if (mView != mNextView) {
143 mView = mNextView;
158 if (mView.getParent() != null) {
159 mWM.removeView(mView);
161 mWM.addView(mView, mParams);
166 if (mView != null) {
170 if (mView.getParent() != null) {
171 mWM.removeView(mView);
173 mView
[all...]
/packages/apps/Settings/src/com/android/settings/wifi/p2p/
H A DWifiP2pDialog.java43 private View mView; field in class:WifiP2pDialog
73 config.wps.pin = ((TextView) mView.findViewById(R.id.wps_pin)).
89 mView = getLayoutInflater().inflate(R.layout.wifi_p2p_dialog, null);
90 Spinner mWpsSetup = ((Spinner) mView.findViewById(R.id.wps_setup));
92 setView(mView);
98 mDeviceName = (TextView) mView.findViewById(R.id.device_name);
99 mDeviceAddress = (TextView) mView.findViewById(R.id.device_address);
121 mView.findViewById(R.id.wps_pin_entry).setVisibility(View.VISIBLE);
123 mView.findViewById(R.id.wps_pin_entry).setVisibility(View.GONE);
/packages/apps/Settings/src/com/android/settings/wifi/
H A DWifiConfigController.java67 private final View mView; field in class:WifiConfigController
141 mView = view;
153 mSsidView = (TextView) mView.findViewById(R.id.ssid);
155 mSecuritySpinner = ((Spinner) mView.findViewById(R.id.security));
158 mView.findViewById(R.id.type_ssid).setVisibility(View.VISIBLE);
159 mView.findViewById(R.id.type_security).setVisibility(View.VISIBLE);
167 mView.findViewById(R.id.type).setVisibility(View.VISIBLE);
173 mIpSettingsSpinner = (Spinner) mView.findViewById(R.id.ip_settings);
175 mProxySettingsSpinner = (Spinner) mView.findViewById(R.id.proxy_settings);
178 ViewGroup group = (ViewGroup) mView
[all...]
H A DWifiDialog.java36 private View mView; field in class:WifiDialog
54 mView = getLayoutInflater().inflate(R.layout.wifi_dialog, null);
55 setView(mView);
57 mController = new WifiConfigController(this, mView, mAccessPoint, mEdit);
H A DWifiConfigUiForSetupWizardXL.java43 private View mView; field in class:WifiConfigUiForSetupWizardXL
70 mView = mInflater.inflate(R.layout.wifi_config_ui_for_setup_wizard, parent, true);
71 mController = new WifiConfigController(this, mView, mAccessPoint, edit);
76 if (mView.findViewById(R.id.security_fields).getVisibility() == View.VISIBLE) {
78 } else if (mView.findViewById(R.id.type_ssid).getVisibility() == View.VISIBLE) {
89 final View viewToBeFocused = mView.findViewById(editViewId);
114 return mView;
H A DWifiApDialog.java53 private View mView; field in class:WifiApDialog
120 mView = getLayoutInflater().inflate(R.layout.wifi_ap_dialog, null);
121 Spinner mSecurity = ((Spinner) mView.findViewById(R.id.security));
123 setView(mView);
129 mView.findViewById(R.id.type).setVisibility(View.VISIBLE);
130 mSsid = (TextView) mView.findViewById(R.id.ssid);
131 mPassword = (EditText) mView.findViewById(R.id.password);
148 ((CheckBox) mView.findViewById(R.id.show_password)).setOnClickListener(this);
197 mView.findViewById(R.id.fields).setVisibility(View.GONE);
200 mView
[all...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/accessibility/
H A DAccessibleKeyboardViewProxy.java42 private LatinKeyboardView mView; field in class:AccessibleKeyboardViewProxy
57 sInstance.mView = view;
77 if (mView == null) {
92 .getDescriptionForKey(mView.getContext(), mView.getKeyboard(), key,
153 if (mView == null) {
168 mView.sendAccessibilityEvent(AccessibilityEventCompatUtils.TYPE_VIEW_HOVER_ENTER);
171 mView.sendAccessibilityEvent(AccessibilityEventCompatUtils.TYPE_VIEW_HOVER_EXIT);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
H A DSuddenJumpingTouchEventHandler.java35 private final ProcessMotionEvent mView; field in class:SuddenJumpingTouchEventHandler
51 mView = view;
120 mView.processMotionEvent(translated);
136 mView.processMotionEvent(translated);
156 return mView.processMotionEvent(me);
/packages/apps/Contacts/src/com/android/contacts/list/
H A DContactsUnavailableFragment.java40 private View mView; field in class:ContactsUnavailableFragment
57 mView = inflater.inflate(R.layout.contacts_unavailable_fragment, null);
58 mMessageView = (TextView) mView.findViewById(R.id.message);
59 mSecondaryMessageView = (TextView) mView.findViewById(R.id.secondary_message);
60 mCreateContactButton = (Button) mView.findViewById(R.id.create_contact_button);
62 mAddAccountButton = (Button) mView.findViewById(R.id.add_account_button);
64 mImportContactsButton = (Button) mView.findViewById(R.id.import_contacts_button);
66 mUninstallAppsButton = (Button) mView.findViewById(R.id.import_failure_uninstall_button);
68 mRetryUpgradeButton = (Button) mView.findViewById(R.id.import_failure_retry_button);
70 mProgress = (ProgressBar) mView
[all...]
/packages/apps/Settings/src/com/android/settings/bluetooth/
H A DBluetoothPermissionActivity.java52 private View mView; field in class:BluetoothPermissionActivity
115 p.mView = createConnectionDialogView();
128 p.mView = createPhonebookDialogView();
156 mView = getLayoutInflater().inflate(R.layout.bluetooth_connection_access, null);
157 messageView = (TextView)mView.findViewById(R.id.message);
159 return mView;
163 mView = getLayoutInflater().inflate(R.layout.bluetooth_pb_access, null);
164 messageView = (TextView)mView.findViewById(R.id.message);
166 mRememberChoice = (CheckBox)mView.findViewById(R.id.bluetooth_pb_remember_choice);
177 return mView;
[all...]

Completed in 381 milliseconds

123