All Downloads are FREE. Search and download functionalities are using the official Maven repository.

android.view.View Maven / Gradle / Ivy

The newest version!
package android.view;

import android.util.LayoutDirection;

public class View {

    /**
     * Horizontal layout direction of this view is from Left to Right.
     * Use with {@link #setLayoutDirection}.
     */
    public static final int LAYOUT_DIRECTION_LTR = LayoutDirection.LTR;
    /**
     * Horizontal layout direction of this view is from Right to Left.
     * Use with {@link #setLayoutDirection}.
     */
    public static final int LAYOUT_DIRECTION_RTL = LayoutDirection.RTL;

    private View rootView;

    public View getRootView() {
        return rootView;
    }

    public void setRootView(View rootView) {
        this.rootView = rootView;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy