Searched refs:mContentView (Results 1 - 19 of 19) sorted by relevance

/packages/apps/Browser/src/com/android/browser/
H A DTabScrollView.java33 private LinearLayout mContentView; field in class:TabScrollView
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
[all...]
H A DNavTabScroller.java53 private ContentLayout mContentView; field in class:NavTabScroller
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
[all...]
H A DPhoneUi.java153 mPieControl.forceToTop(mContentView);
287 mAnimScreen.mMain.layout(0, 0, mContentView.getWidth(),
288 mContentView.getHeight());
291 int fromRight = mContentView.getWidth();
292 int fromBottom = mContentView.getHeight();
296 int toLeft = (mContentView.getWidth() - width) / 2;
300 float scaleFactor = width / (float) mContentView.getWidth();
302 mContentView.setVisibility(View.GONE);
354 mContentView.setVisibility(View.VISIBLE);
364 mContentView
[all...]
H A DBaseUi.java90 protected FrameLayout mContentView; field in class:BaseUi
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, fals
[all...]
H A DXLargeUi.java179 if (mContentView != null) {
180 return mContentView.getWidth();
257 return mContentView.dispatchKeyEvent(event);
H A DTitleBar.java49 private FrameLayout mContentView; field in class:TitleBar
69 mContentView = contentView;
124 mContentView.addView(this, makeLayoutParams());
/packages/apps/DeskClock/src/com/android/deskclock/
H A DScreensaver.java38 private View mContentView, mSaverView; field in class:Screensaver
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);
H A DScreensaverActivity.java44 private View mContentView, mSaverView; field in class:ScreensaverActivity
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...]
H A DUtils.java258 private View mContentView, mSaverView; field in class:Utils.ScreensaverMoveSaverRunnable
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();
/packages/apps/Settings/src/com/android/settings/
H A DMasterClear.java61 private View mContentView; field in class:MasterClear
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...]
H A DMasterClearConfirm.java47 private View mContentView; field in class:MasterClearConfirm
124 mContentView.findViewById(R.id.execute_master_clear)
135 mContentView = inflater.inflate(R.layout.master_clear_confirm, null);
137 return mContentView;
H A DCryptKeeperConfirm.java91 private View mContentView; field in class:CryptKeeperConfirm
138 mFinalButton = (Button) mContentView.findViewById(R.id.execute_encrypt);
145 mContentView = inflater.inflate(R.layout.crypt_keeper_confirm, null);
147 return mContentView;
H A DCryptKeeperSettings.java49 private View mContentView; field in class:CryptKeeperSettings
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;
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DGLRootView.java83 private GLView mContentView; field in class:GLRootView
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
[all...]
/packages/apps/DeskClock/src/com/android/deskclock/alarms/
H A DAlarmActivity.java124 private ViewGroup mContentView; field in class:AlarmActivity
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
[all...]
/packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/
H A DManagedProvisioningActivity.java91 private View mContentView; field in class:ManagedProvisioningActivity
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/Bluetooth/src/com/android/bluetooth/opp/
H A DBluetoothOppIncomingFileConfirmActivity.java78 private TextView mContentView; field in class:BluetoothOppIncomingFileConfirmActivity
203 mContentView.setText(getString(R.string.incoming_file_confirm_timeout_content,
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/accessories/
H A DAddAccessoryActivity.java111 private View mContentView; field in class:AddAccessoryActivity
267 mContentView = findViewById(R.id.content_fragment);
271 mContentView.setTranslationX(mViewOffset / 2);
514 prepareAndAnimateView(mContentView, 1f, mViewOffset / 2, 0, ANIMATE_IN_DURATION,
/packages/apps/DeskClock/src/com/android/deskclock/timer/
H A DTimerFragment.java71 private ViewGroup mContentView; field in class:TimerFragment
148 mContentView = (ViewGroup) view;
584 TransitionManager.beginDelayedTransition(mContentView, mDeleteTransition);

Completed in 372 milliseconds