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

/packages/apps/DeskClock/src/com/android/deskclock/
H A DScreensaver.java47 private View mContentView; field in class:Screensaver
57 Utils.refreshAlarm(Screensaver.this, mContentView);
65 Utils.updateDate(mDateFormat, mDateFormatForAccessibility, mContentView);
75 Utils.refreshAlarm(Screensaver.this, mContentView);
97 mContentView = findViewById(R.id.saver_container);
98 mMainClockView = mContentView.findViewById(R.id.main_clock);
103 Utils.setClockIconTypeface(mContentView);
107 mContentView.setSystemUiVisibility(View.SYSTEM_UI_FLAG_LOW_PROFILE
113 mPositionUpdater = new MoveScreensaverRunnable(mContentView, mMainClockView);
131 Utils.updateDate(mDateFormat, mDateFormatForAccessibility, mContentView);
[all...]
H A DScreensaverActivity.java69 Utils.refreshAlarm(ScreensaverActivity.this, mContentView);
80 Utils.refreshAlarm(ScreensaverActivity.this, mContentView);
89 Utils.updateDate(mDateFormat, mDateFormatForAccessibility, mContentView);
96 private View mContentView; field in class:ScreensaverActivity
109 mContentView = findViewById(R.id.saver_container);
110 mMainClockView = mContentView.findViewById(R.id.main_clock);
122 mContentView.setSystemUiVisibility(View.SYSTEM_UI_FLAG_LOW_PROFILE
127 mContentView.setOnSystemUiVisibilityChangeListener(new InteractionListener());
129 mPositionUpdater = new MoveScreensaverRunnable(mContentView, mMainClockView);
162 Utils.updateDate(mDateFormat, mDateFormatForAccessibility, mContentView);
[all...]
H A DMoveScreensaverRunnable.java34 * {@link #mContentView} if {@link #mSaverView} is transparent. It also schedules itself to run
50 private final View mContentView; field in class:MoveScreensaverRunnable
52 /** The display within the {@link #mContentView} that is randomly positioned. */
63 mContentView = contentView;
104 // mContentView are untrustworthy if this was caused by a configuration change. To
107 final int smallestDim = Math.min(mContentView.getWidth(), mContentView.getHeight());
118 // Select a new random position anywhere in mContentView that will fit mSaverView.
119 final float newX = getRandomPoint(mContentView.getWidth() - mSaverView.getWidth());
120 final float newY = getRandomPoint(mContentView
[all...]
/packages/apps/Settings/tests/robotests/src/com/android/settings/widget/
H A DLoadingViewControllerTest.java45 private View mContentView; field in class:LoadingViewControllerTest
53 mContentView = new View(mContext);
55 mController = new LoadingViewController(mLoadingView, mContentView);
62 assertThat(mContentView.getVisibility()).isEqualTo(View.VISIBLE);
/packages/apps/DeskClock/src/com/android/deskclock/widget/
H A DEmptyViewController.java38 private final View mContentView; field in class:EmptyViewController
50 mContentView = contentView;
80 mContentView.setVisibility(mIsEmpty ? View.GONE : View.VISIBLE);
/packages/apps/Settings/src/com/android/settings/widget/
H A DLoadingViewController.java34 public final View mContentView; field in class:LoadingViewController
38 mContentView = contentView;
61 handleLoadingContainer(mLoadingView, mContentView, done, animate);
/packages/apps/Settings/src/com/android/settings/
H A DMasterClear.java80 private View mContentView; field in class:MasterClear
173 mInitiateButton = (Button) mContentView.findViewById(R.id.initiate_master_clear);
175 mExternalStorageContainer = mContentView.findViewById(R.id.erase_external_container);
176 mExternalStorage = (CheckBox) mContentView.findViewById(R.id.erase_external);
177 mScrollView = (ScrollView) mContentView.findViewById(R.id.master_clear_scrollview);
191 final View externalOption = mContentView.findViewById(R.id.erase_external_option_text);
194 final View externalAlsoErased = mContentView.findViewById(R.id.also_erases_external);
211 final View esimAlsoErased = mContentView.findViewById(R.id.also_erases_esim);
214 final View noCancelMobilePlan = mContentView.findViewById(R.id.no_cancel_mobile_plan);
221 View masterClearContainer = mContentView
[all...]
H A DMasterClearConfirm.java52 private View mContentView; field in class:MasterClearConfirm
140 mContentView.findViewById(R.id.execute_master_clear)
158 mContentView = inflater.inflate(R.layout.master_clear_confirm, null);
161 return mContentView;
167 (TextView) mContentView.findViewById(R.id.master_clear_confirm);
H A DCryptKeeperConfirm.java98 private View mContentView; field in class:CryptKeeperConfirm
152 mFinalButton = (Button) mContentView.findViewById(R.id.execute_encrypt);
159 mContentView = inflater.inflate(R.layout.crypt_keeper_confirm, null);
161 return mContentView;
H A DResetNetworkConfirm.java57 private View mContentView; field in class:ResetNetworkConfirm
134 mContentView.findViewById(R.id.execute_reset_network)
152 mContentView = inflater.inflate(R.layout.reset_network_confirm, null);
154 return mContentView;
H A DCryptKeeperSettings.java54 private View mContentView; field in class:CryptKeeperSettings
105 mContentView = inflater.inflate(R.layout.crypt_keeper_settings, null);
110 mInitiateButton = (Button) mContentView.findViewById(R.id.initiate_encrypt);
114 mPowerWarning = mContentView.findViewById(R.id.warning_unplugged);
115 mBatteryWarning = mContentView.findViewById(R.id.warning_low_charge);
117 return mContentView;
H A DResetNetwork.java62 private View mContentView; field in class:ResetNetwork
135 mSubscriptionSpinner = (Spinner) mContentView.findViewById(R.id.reset_network_subscription);
185 mInitiateButton = (Button) mContentView.findViewById(R.id.initiate_reset_network);
205 mContentView = inflater.inflate(R.layout.reset_network, null);
208 return mContentView;
H A DTrustedCredentialsSettings.java115 private final int mContentView; field in class:TrustedCredentialsSettings.Tab
123 mContentView = contentView;
277 final ViewGroup contentView = (ViewGroup) mTabHost.findViewById(tab.mContentView);
659 private View mContentView; field in class:TrustedCredentialsSettings.AdapterData.AliasLoader
679 mContentView = content.findViewById(mTab.mContentView);
681 mContentView.setVisibility(View.GONE);
767 mContentView.setVisibility(View.VISIBLE);
/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/TvSettings/Settings/src/com/android/tv/settings/connectivity/setup/
H A DMessagePageFrameLayout.java64 View mContentView = getRootView().findViewById(R.id.message_content);
83 mContentView.offsetTopAndBottom(offset);
/packages/apps/DeskClock/src/com/android/deskclock/alarms/
H A DAlarmActivity.java142 private ViewGroup mContentView; field in class:AlarmActivity
203 mContentView = (ViewGroup) findViewById(R.id.content);
204 mAlarmButton = (ImageView) mContentView.findViewById(R.id.alarm);
205 mSnoozeButton = (ImageView) mContentView.findViewById(R.id.snooze);
206 mDismissButton = (ImageView) mContentView.findViewById(R.id.dismiss);
207 mHintView = (TextView) mContentView.findViewById(R.id.hint);
209 final TextView titleView = (TextView) mContentView.findViewById(R.id.title);
210 final TextClock digitalClock = (TextClock) mContentView.findViewById(R.id.digital_clock);
211 final CircleView pulseView = (CircleView) mContentView.findViewById(R.id.pulse);
380 mContentView
[all...]
/packages/apps/Settings/tests/robotests/src/com/android/settings/
H A DMasterClearTest.java67 private View mContentView; field in class:MasterClearTest
89 mContentView = LayoutInflater.from(mActivity).inflate(R.layout.master_clear, null);
157 mContentView.findViewById(R.id.initiate_master_clear));
/packages/apps/TV/src/com/android/tv/ui/
H A DTvViewUiManager.java67 private final FrameLayout mContentView; field in class:TvViewUiManager
134 mContentView = contentView;
222 int viewWidth = mContentView.getWidth();
223 int viewHeight = mContentView.getHeight();
328 int decorViewWidth = mContentView.getWidth();
329 int decorViewHeight = mContentView.getHeight();
339 mContentView.setBackgroundColor(color);
349 mContentView.setBackgroundColor(color);
468 mBackgroundAnimator.setTarget(mContentView);
478 mContentView
[all...]
/packages/apps/TV/src/com/android/tv/
H A DMainActivity.java244 private View mContentView; field in class:MainActivity
552 mContentView = findViewById(android.R.id.content);
1308 if ((mContentView.hasFocusable() && !mOverlayManager.getSideFragmentManager().isHiding())
1630 if (mContentView.isAttachedToWindow()) {
1633 mContentView.getViewTreeObserver().addOnWindowAttachListener(
1637 mContentView.getViewTreeObserver().removeOnWindowAttachListener(this);

Completed in 250 milliseconds