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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNavigationBarInflaterView.java110 Configuration landscape = new Configuration();
111 landscape.setTo(mContext.getResources().getConfiguration());
112 landscape.orientation = Configuration.ORIENTATION_LANDSCAPE;
113 mLandscapeInflater = LayoutInflater.from(mContext.createConfigurationContext(landscape));
243 private void inflateButtons(String[] buttons, ViewGroup parent, boolean landscape, argument
246 inflateButton(buttons[i], parent, landscape, start);
259 protected View inflateButton(String buttonSpec, ViewGroup parent, boolean landscape, argument
261 LayoutInflater inflater = landscape ? mLandscapeInflater : mLayoutInflater;
265 v = applySize(v, buttonSpec, landscape, start);
268 View lastView = landscape
284 applySize(View v, String buttonSpec, boolean landscape, boolean start) argument
[all...]
H A DNavigationBarView.java376 private KeyButtonDrawable getBackIconWithAlt(boolean carMode, boolean landscape) { argument
377 return landscape
382 private KeyButtonDrawable getBackIcon(boolean carMode, boolean landscape) { argument
383 return landscape
/frameworks/base/core/java/android/widget/
H A DRemoteViews.java166 * Constants to whether or not this RemoteViews is composed of a landscape and portrait
174 * {@link #RemoteViews(RemoteViews, RemoteViews)} to keep track of the landscape and portrait
2386 * @param landscape The RemoteViews to inflate in landscape configuration
2389 public RemoteViews(RemoteViews landscape, RemoteViews portrait) { argument
2390 if (landscape == null || portrait == null) {
2393 if (landscape.mApplication.uid != portrait.mApplication.uid
2394 || !landscape.mApplication.packageName.equals(portrait.mApplication.packageName)) {
2400 mLandscape = landscape;
2407 configureRemoteViewsAsChild(landscape);
[all...]

Completed in 84 milliseconds