Java Code Examples for android.view.View#setLayoutDirection()
The following examples show how to use
android.view.View#setLayoutDirection() .
These examples are extracted from open source projects.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source Project: litho File: MountState.java License: Apache License 2.0 | 6 votes |
private static void setViewLayoutDirection(View view, ViewNodeInfo viewNodeInfo) { if (Build.VERSION.SDK_INT < Build.VERSION_CODES.JELLY_BEAN_MR1) { return; } final int viewLayoutDirection; switch (viewNodeInfo.getLayoutDirection()) { case LTR: viewLayoutDirection = View.LAYOUT_DIRECTION_LTR; break; case RTL: viewLayoutDirection = View.LAYOUT_DIRECTION_RTL; break; default: viewLayoutDirection = View.LAYOUT_DIRECTION_INHERIT; } view.setLayoutDirection(viewLayoutDirection); }
Example 2
Source Project: Trebuchet File: PinnedHeaderListAdapter.java License: GNU General Public License v3.0 | 6 votes |
/** * The default implementation creates the same type of view as a normal * partition header. */ @Override public View getPinnedHeaderView(int partition, View convertView, ViewGroup parent) { if (hasHeader(partition)) { View view = null; if (convertView != null) { Integer headerType = (Integer)convertView.getTag(); if (headerType != null && headerType == PARTITION_HEADER_TYPE) { view = convertView; } } if (view == null) { view = newHeaderView(getContext(), partition, null, parent); view.setTag(PARTITION_HEADER_TYPE); view.setFocusable(false); view.setEnabled(false); } bindHeaderView(view, partition, getCursor(partition)); view.setLayoutDirection(parent.getLayoutDirection()); return view; } else { return null; } }
Example 3
Source Project: TurboLauncher File: PinnedHeaderListAdapter.java License: Apache License 2.0 | 6 votes |
/** * The default implementation creates the same type of view as a normal * partition header. */ @Override public View getPinnedHeaderView(int partition, View convertView, ViewGroup parent) { if (hasHeader(partition)) { View view = null; if (convertView != null) { Integer headerType = (Integer)convertView.getTag(); if (headerType != null && headerType == PARTITION_HEADER_TYPE) { view = convertView; } } if (view == null) { view = newHeaderView(getContext(), partition, null, parent); view.setTag(PARTITION_HEADER_TYPE); view.setFocusable(false); view.setEnabled(false); } bindHeaderView(view, partition, getCursor(partition)); view.setLayoutDirection(parent.getLayoutDirection()); return view; } else { return null; } }
Example 4
Source Project: LokiBoard-Android-Keylogger File: CustomInputStyleSettingsFragment.java License: Apache License 2.0 | 5 votes |
@Override public View onCreateView(final LayoutInflater inflater, final ViewGroup container, final Bundle savedInstanceState) { final View view = super.onCreateView(inflater, container, savedInstanceState); // For correct display in RTL locales, we need to set the layout direction of the // fragment's top view. //ViewCompat.setLayoutDirection(view, ViewCompat.LAYOUT_DIRECTION_LOCALE); view.setLayoutDirection(View.LAYOUT_DIRECTION_LOCALE); return view; }
Example 5
Source Project: litho File: MountState.java License: Apache License 2.0 | 5 votes |
private static void unsetViewLayoutDirection(View view) { if (Build.VERSION.SDK_INT < Build.VERSION_CODES.JELLY_BEAN_MR1) { return; } view.setLayoutDirection(View.LAYOUT_DIRECTION_INHERIT); }
Example 6
Source Project: cronet File: ApiCompatibilityUtils.java License: BSD 3-Clause "New" or "Revised" License | 5 votes |
/** * @see android.view.View#setLayoutDirection(int) */ public static void setLayoutDirection(View view, int layoutDirection) { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1) { view.setLayoutDirection(layoutDirection); } else { // Do nothing. RTL layouts aren't supported before JB MR1. } }
Example 7
Source Project: simple-keyboard File: CustomInputStyleSettingsFragment.java License: Apache License 2.0 | 5 votes |
@Override public View onCreateView(final LayoutInflater inflater, final ViewGroup container, final Bundle savedInstanceState) { final View view = super.onCreateView(inflater, container, savedInstanceState); // For correct display in RTL locales, we need to set the layout direction of the // fragment's top view. //ViewCompat.setLayoutDirection(view, ViewCompat.LAYOUT_DIRECTION_LOCALE); view.setLayoutDirection(View.LAYOUT_DIRECTION_LOCALE); return view; }
Example 8
Source Project: 365browser File: ApiCompatibilityUtils.java License: Apache License 2.0 | 5 votes |
/** * @see android.view.View#setLayoutDirection(int) */ public static void setLayoutDirection(View view, int layoutDirection) { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1) { view.setLayoutDirection(layoutDirection); } else { // Do nothing. RTL layouts aren't supported before JB MR1. } }
Example 9
Source Project: android-chromium File: ApiCompatibilityUtils.java License: BSD 2-Clause "Simplified" License | 5 votes |
/** * @see android.view.View#setLayoutDirection(int) */ public static void setLayoutDirection(View view, int layoutDirection) { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1) { view.setLayoutDirection(layoutDirection); } else { // Do nothing. RTL layouts aren't supported before JB MR1. } }
Example 10
Source Project: android-chromium File: ApiCompatibilityUtils.java License: BSD 2-Clause "Simplified" License | 5 votes |
/** * @see android.view.View#setLayoutDirection(int) */ public static void setLayoutDirection(View view, int layoutDirection) { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1) { view.setLayoutDirection(layoutDirection); } else { // Do nothing. RTL layouts aren't supported before JB MR1. } }
Example 11
Source Project: letv File: ViewCompatJellybeanMr1.java License: Apache License 2.0 | 4 votes |
public static void setLayoutDirection(View view, int layoutDirection) { view.setLayoutDirection(layoutDirection); }
Example 12
Source Project: MiBandDecompiled File: an.java License: Apache License 2.0 | 4 votes |
public static void b(View view, int i) { view.setLayoutDirection(i); }
Example 13
Source Project: CodenameOne File: ViewCompatJellybeanMr1.java License: GNU General Public License v2.0 | 4 votes |
public static void setLayoutDirection(View view, int layoutDirection) { view.setLayoutDirection(layoutDirection); }
Example 14
Source Project: adt-leanback-support File: ViewCompatJellybeanMr1.java License: Apache License 2.0 | 4 votes |
public static void setLayoutDirection(View view, int layoutDirection) { view.setLayoutDirection(layoutDirection); }
Example 15
Source Project: V.FlyoutTest File: ViewCompatJellybeanMr1.java License: MIT License | 4 votes |
public static void setLayoutDirection(View view, int layoutDirection) { view.setLayoutDirection(layoutDirection); }
Example 16
Source Project: guideshow File: ViewCompatJellybeanMr1.java License: MIT License | 4 votes |
public static void setLayoutDirection(View view, int layoutDirection) { view.setLayoutDirection(layoutDirection); }