TextView.Gravity Property

Definition

Returns the horizontal and vertical alignment of this TextView. -or- Sets the horizontal alignment of the text and the vertical gravity that will be used when there is extra space in the TextView beyond what is required for the text itself.

public virtual Android.Views.GravityFlags Gravity { [Android.Runtime.Register("getGravity", "()I", "GetGetGravityHandler")] get; [Android.Runtime.Register("setGravity", "(I)V", "GetSetGravity_IHandler")] set; }
[<get: Android.Runtime.Register("getGravity", "()I", "GetGetGravityHandler")>]
[<set: Android.Runtime.Register("setGravity", "(I)V", "GetSetGravity_IHandler")>]
member this.Gravity : Android.Views.GravityFlags with get, set

Property Value

Attributes

Remarks

Property getter documentation:

Returns the horizontal and vertical alignment of this TextView.

Java documentation for android.widget.TextView.getGravity().

Property setter documentation:

Sets the horizontal alignment of the text and the vertical gravity that will be used when there is extra space in the TextView beyond what is required for the text itself.

Java documentation for android.widget.TextView.setGravity(int).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

See also