Searched defs:landscape (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNavigationBarInflaterView.java90 Configuration landscape = new Configuration();
91 landscape.setTo(mContext.getResources().getConfiguration());
92 landscape.orientation = Configuration.ORIENTATION_LANDSCAPE;
93 mLandscapeInflater = LayoutInflater.from(mContext.createConfigurationContext(landscape));
231 private void inflateButtons(String[] buttons, ViewGroup parent, boolean landscape) { argument
233 inflateButton(buttons[i], parent, landscape);
246 protected View inflateButton(String buttonSpec, ViewGroup parent, boolean landscape) { argument
247 LayoutInflater inflater = landscape ? mLandscapeInflater : mLayoutInflater;
281 View lastView = landscape ? mLastLandscape : mLastPortrait;
285 if (landscape) {
[all...]
H A DNavigationBarView.java319 private Drawable getBackIconWithAlt(boolean carMode, boolean landscape) { argument
320 return landscape
325 private Drawable getBackIcon(boolean carMode, boolean landscape) { argument
326 return landscape
/frameworks/base/core/java/android/widget/
H A DRemoteViews.java127 * Constants to whether or not this RemoteViews is composed of a landscape and portrait
135 * {@link #RemoteViews(RemoteViews, RemoteViews)} to keep track of the landscape and portrait
2119 * @param landscape The RemoteViews to inflate in landscape configuration
2122 public RemoteViews(RemoteViews landscape, RemoteViews portrait) { argument
2123 if (landscape == null || portrait == null) {
2126 if (landscape.mApplication.uid != portrait.mApplication.uid
2127 || !landscape.mApplication.packageName.equals(portrait.mApplication.packageName)) {
2133 mLandscape = landscape;
2140 configureRemoteViewsAsChild(landscape);
[all...]

Completed in 1400 milliseconds