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

1 2

  /packages/apps/Browser/src/com/android/browser/
TabScrollView.java 33 private LinearLayout mContentView;
71 mContentView = new TabLayout(ctx);
72 mContentView.setOrientation(LinearLayout.HORIZONTAL);
73 mContentView.setLayoutParams(
75 mContentView.setPadding(
78 addView(mContentView);
92 final int count = mContentView.getChildCount();
94 final TabView tv = (TabView) mContentView.getChildAt(i);
114 return mContentView.indexOfChild(v);
118 if ((mSelected >= 0) && (mSelected < mContentView.getChildCount()))
    [all...]
NavTabScroller.java 53 private ContentLayout mContentView;
92 mContentView = new ContentLayout(ctx, this);
93 mContentView.setOrientation(LinearLayout.HORIZONTAL);
94 addView(mContentView);
95 mContentView.setLayoutParams(
112 return (NavTabView) mContentView.getChildAt(pos);
120 mContentView.setOrientation(orientation);
122 mContentView.setLayoutParams(
125 mContentView.setLayoutParams(
139 View v = mContentView.getChildAt(0)
    [all...]
TitleBar.java 49 private FrameLayout mContentView;
69 mContentView = contentView;
124 mContentView.addView(this, makeLayoutParams());
BaseUi.java 90 protected FrameLayout mContentView;
132 mContentView = (FrameLayout) frameLayout.findViewById(
142 mContentView);
209 mPieControl.attachToContainer(mContentView);
212 mPieControl.removeFromContainer(mContentView);
285 mPieControl.forceToTop(mContentView);
356 if (parent != mContentView) {
360 mContentView.addView(container, COVER_SCREEN_PARAMS);
379 mContentView.removeView(container);
395 mContentView, false)
    [all...]
  /packages/apps/Settings/src/com/android/settings/
MasterClearConfirm.java 47 private View mContentView;
124 mContentView.findViewById(R.id.execute_master_clear)
135 mContentView = inflater.inflate(R.layout.master_clear_confirm, null);
137 return mContentView;
CryptKeeperConfirm.java 91 private View mContentView;
138 mFinalButton = (Button) mContentView.findViewById(R.id.execute_encrypt);
145 mContentView = inflater.inflate(R.layout.crypt_keeper_confirm, null);
147 return mContentView;
CryptKeeperSettings.java 49 private View mContentView;
100 mContentView = inflater.inflate(R.layout.crypt_keeper_settings, null);
105 mInitiateButton = (Button) mContentView.findViewById(R.id.initiate_encrypt);
109 mPowerWarning = mContentView.findViewById(R.id.warning_unplugged);
110 mBatteryWarning = mContentView.findViewById(R.id.warning_low_charge);
112 return mContentView;
MasterClear.java 61 private View mContentView;
132 mInitiateButton = (Button) mContentView.findViewById(R.id.initiate_master_clear);
134 mExternalStorageContainer = mContentView.findViewById(R.id.erase_external_container);
135 mExternalStorage = (CheckBox) mContentView.findViewById(R.id.erase_external);
149 final View externalOption = mContentView.findViewById(R.id.erase_external_option_text);
152 final View externalAlsoErased = mContentView.findViewById(R.id.also_erases_external);
177 View accountsLabel = mContentView.findViewById(R.id.accounts_label);
178 LinearLayout contents = (LinearLayout)mContentView.findViewById(R.id.accounts);
244 mContentView = inflater.inflate(R.layout.master_clear, null);
247 return mContentView;
    [all...]
  /development/samples/HoneycombGallery/src/com/example/android/hcgallery/
ContentFragment.java 55 private View mContentView;
73 mContentView = inflater.inflate(R.layout.content_welcome, null);
74 final ImageView imageView = (ImageView) mContentView.findViewById(R.id.image);
75 mContentView.setDrawingCacheEnabled(false);
78 mContentView.setOnDragListener(new View.OnDragListener() {
102 mContentView.setOnClickListener(new OnClickListener() {
119 mContentView.setOnLongClickListener(new View.OnLongClickListener() {
132 return mContentView;
391 mContentView.setSelected(false);
  /development/samples/training/AnimationsDemo/src/com/example/android/animationsdemo/
CrossfadeActivity.java 48 private View mContentView;
66 mContentView = findViewById(R.id.content);
70 mContentView.setVisibility(View.GONE);
103 * Cross-fades between {@link #mContentView} and {@link #mLoadingView}.
107 final View showView = contentLoaded ? mContentView : mLoadingView;
108 final View hideView = contentLoaded ? mLoadingView : mContentView;
  /packages/apps/DeskClock/src/com/android/deskclock/
ScreensaverActivity.java 44 private View mContentView, mSaverView;
78 Utils.updateDate(mDateFormat, mDateFormatForAccessibility, mContentView);
79 Utils.refreshAlarm(ScreensaverActivity.this, mContentView);
84 Utils.refreshAlarm(ScreensaverActivity.this, mContentView);
93 Utils.updateDate(mDateFormat, mDateFormatForAccessibility, mContentView);
192 mContentView = (View) mSaverView.getParent();
193 mContentView.forceLayout();
197 mMoveSaverRunnable.registerViews(mContentView, mSaverView);
199 mContentView.setSystemUiVisibility(View.SYSTEM_UI_FLAG_LOW_PROFILE
203 Utils.updateDate(mDateFormat, mDateFormatForAccessibility,mContentView);
    [all...]
Screensaver.java 38 private View mContentView, mSaverView;
51 Utils.updateDate(mDateFormat, mDateFormatForAccessibility, mContentView);
71 Utils.updateDate(mDateFormat, mDateFormatForAccessibility, mContentView);
72 Utils.refreshAlarm(Screensaver.this, mContentView);
75 Utils.refreshAlarm(Screensaver.this, mContentView);
157 mContentView = (View) mSaverView.getParent();
160 mMoveSaverRunnable.registerViews(mContentView, mSaverView);
162 Utils.updateDate(mDateFormat, mDateFormatForAccessibility, mContentView);
163 Utils.refreshAlarm(Screensaver.this, mContentView);
Utils.java 258 private View mContentView, mSaverView;
275 mContentView = contentView;
282 if (mContentView == null || mSaverView == null) {
288 final float xrange = mContentView.getWidth() - mSaverView.getWidth();
289 final float yrange = mContentView.getHeight() - mSaverView.getHeight();
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
PrintPreviewController.java 57 private final PrintContentView mContentView;
84 mContentView = (PrintContentView) activity.findViewById(R.id.options_content);
96 return mContentView.isOptionsOpened();
100 mContentView.closeOptions();
  /development/samples/WiFiDirectDemo/src/com/example/android/wifidirect/
DeviceDetailFragment.java 56 private View mContentView = null;
69 mContentView = inflater.inflate(R.layout.device_detail, null);
70 mContentView.findViewById(R.id.btn_connect).setOnClickListener(new View.OnClickListener() {
95 mContentView.findViewById(R.id.btn_disconnect).setOnClickListener(
104 mContentView.findViewById(R.id.btn_start_client).setOnClickListener(
117 return mContentView;
126 TextView statusText = (TextView) mContentView.findViewById(R.id.status_text);
147 TextView view = (TextView) mContentView.findViewById(R.id.group_owner);
153 view = (TextView) mContentView.findViewById(R.id.device_info);
160 new FileServerAsyncTask(getActivity(), mContentView.findViewById(R.id.status_text)
    [all...]
DeviceListFragment.java 47 View mContentView = null;
59 mContentView = inflater.inflate(R.layout.device_list, null);
60 return mContentView;
149 TextView view = (TextView) mContentView.findViewById(R.id.my_name);
151 view = (TextView) mContentView.findViewById(R.id.my_status);
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/infobar/
InfoBar.java 43 private ContentWrapperView mContentView;
188 if (mContentView == null && createIfNotFound) {
189 mContentView = new ContentWrapperView(getContext(), this, createView());
190 mContentView.setFocusable(false);
192 return mContentView;
219 if (mContentView != null) {
220 View closeButton = mContentView.findViewById(R.id.infobar_close_button);
221 View primaryButton = mContentView.findViewById(R.id.button_primary);
222 View secondaryButton = mContentView.findViewById(R.id.button_secondary);
223 View tertiaryButton = mContentView.findViewById(R.id.button_tertiary)
    [all...]
  /frameworks/base/tests/VoiceInteraction/src/com/android/test/voiceinteraction/
MainInteractionSession.java 33 View mContentView;
63 mContentView = getLayoutInflater().inflate(R.layout.voice_interaction_session, null);
64 mText = (TextView)mContentView.findViewById(R.id.text);
65 mStartButton = (Button)mContentView.findViewById(R.id.start);
67 mConfirmButton = (Button)mContentView.findViewById(R.id.confirm);
69 mCompleteButton = (Button)mContentView.findViewById(R.id.complete);
71 mAbortButton = (Button)mContentView.findViewById(R.id.abort);
74 return mContentView;
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
ImageCardView.java 37 private TextView mContentView;
59 mContentView = (TextView) v.findViewById(R.id.content_text);
180 if (mContentView == null) {
184 mContentView.setText(text);
189 if (mContentView == null) {
193 return mContentView.getText();
232 mContentView.setMaxLines(2);
234 mContentView.setMaxLines(1);
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppIncomingFileConfirmActivity.java 78 private TextView mContentView;
203 mContentView.setText(getString(R.string.incoming_file_confirm_timeout_content,
  /packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/
ManagedProvisioningActivity.java 91 private View mContentView;
102 mContentView = inflater.inflate(R.layout.user_consent, null);
103 mMainTextView = mContentView.findViewById(R.id.main_text_container);
104 mProgressView = mContentView.findViewById(R.id.progress_container);
105 setContentView(mContentView);
134 setMdmIcon(mMdmPackageName, mContentView);
167 Button positiveButton = (Button) mContentView.findViewById(R.id.positive_button);
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
GLRootView.java 83 private GLView mContentView;
158 if (mContentView == content) return;
159 if (mContentView != null) {
164 mContentView.dispatchTouchEvent(cancelEvent);
168 mContentView.detachFromRoot();
171 mContentView = content;
214 if (mContentView == null || (mFlags & FLAG_NEED_LAYOUT) != 0) return;
266 if (mContentView != null && w != 0 && h != 0) {
267 mContentView.layout(0, 0, w, h);
270 //mContentView.dumpTree("")
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
GameControllerInput.java 495 private TextView mContentView;
511 mContentView = (TextView) view.findViewById(R.id.content);
516 mContentView.setText(mContent);
  /frameworks/base/core/java/android/widget/
PopupWindow.java 86 private View mContentView;
418 return mContentView;
437 mContentView = contentView;
439 if (mContext == null && mContentView != null) {
440 mContext = mContentView.getContext();
443 if (mWindowManager == null && mContentView != null) {
866 if (isShowing() || mContentView == null) {
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/alarms/
AlarmActivity.java 124 private ViewGroup mContentView;
179 mContentView = (ViewGroup) mContainerView.findViewById(R.id.content);
180 mAlarmButton = (ImageButton) mContentView.findViewById(R.id.alarm);
181 mSnoozeButton = (ImageButton) mContentView.findViewById(R.id.snooze);
182 mDismissButton = (ImageButton) mContentView.findViewById(R.id.dismiss);
183 mHintView = (TextView) mContentView.findViewById(R.id.hint);
185 final TextView titleView = (TextView) mContentView.findViewById(R.id.title);
186 final TextClock digitalClock = (TextClock) mContentView.findViewById(R.id.digital_clock);
187 final View pulseView = mContentView.findViewById(R.id.pulse);
293 mContentView.getLocationOnScreen(contentLocation)
    [all...]

Completed in 564 milliseconds

1 2