Java Code Examples for android.view.View#setLayoutDirection()

The following examples show how to use android.view.View#setLayoutDirection() . 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 File: MountState.java    From litho with Apache License 2.0 6 votes vote down vote up
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 File: PinnedHeaderListAdapter.java    From Trebuchet with GNU General Public License v3.0 6 votes vote down vote up
/**
 * 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 File: PinnedHeaderListAdapter.java    From TurboLauncher with Apache License 2.0 6 votes vote down vote up
/**
 * 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 File: CustomInputStyleSettingsFragment.java    From LokiBoard-Android-Keylogger with Apache License 2.0 5 votes vote down vote up
@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 File: MountState.java    From litho with Apache License 2.0 5 votes vote down vote up
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 File: ApiCompatibilityUtils.java    From cronet with BSD 3-Clause "New" or "Revised" License 5 votes vote down vote up
/**
 * @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 File: CustomInputStyleSettingsFragment.java    From simple-keyboard with Apache License 2.0 5 votes vote down vote up
@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 File: ApiCompatibilityUtils.java    From 365browser with Apache License 2.0 5 votes vote down vote up
/**
 * @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 File: ApiCompatibilityUtils.java    From android-chromium with BSD 2-Clause "Simplified" License 5 votes vote down vote up
/**
 * @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 File: ApiCompatibilityUtils.java    From android-chromium with BSD 2-Clause "Simplified" License 5 votes vote down vote up
/**
 * @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 File: ViewCompatJellybeanMr1.java    From letv with Apache License 2.0 4 votes vote down vote up
public static void setLayoutDirection(View view, int layoutDirection) {
    view.setLayoutDirection(layoutDirection);
}
 
Example 12
Source File: an.java    From MiBandDecompiled with Apache License 2.0 4 votes vote down vote up
public static void b(View view, int i)
{
    view.setLayoutDirection(i);
}
 
Example 13
Source File: ViewCompatJellybeanMr1.java    From CodenameOne with GNU General Public License v2.0 4 votes vote down vote up
public static void setLayoutDirection(View view, int layoutDirection) {
    view.setLayoutDirection(layoutDirection);
}
 
Example 14
Source File: ViewCompatJellybeanMr1.java    From adt-leanback-support with Apache License 2.0 4 votes vote down vote up
public static void setLayoutDirection(View view, int layoutDirection) {
    view.setLayoutDirection(layoutDirection);
}
 
Example 15
Source File: ViewCompatJellybeanMr1.java    From V.FlyoutTest with MIT License 4 votes vote down vote up
public static void setLayoutDirection(View view, int layoutDirection) {
    view.setLayoutDirection(layoutDirection);
}
 
Example 16
Source File: ViewCompatJellybeanMr1.java    From guideshow with MIT License 4 votes vote down vote up
public static void setLayoutDirection(View view, int layoutDirection) {
    view.setLayoutDirection(layoutDirection);
}