Android:对齐左侧的文本,并在其父级视图中将文本视图居中

时间:2016-07-01 07:09:42

标签: android text textview gravity

你好,我面临一个小问题

我使用GRAVITY LEFT使我的文本成为视图左侧的对象,但我想在textview中居中,但也要在左侧部分对齐

以下是我现在拥有的内容:

            ___________________________________
_ _ _ _ _ _| aaaaaaaaaaaaa                     |_ _ _ _ _ _
_ _ _ _ _ _| aaaaaaaa                          |_ _ _ _ _ _
_ _ _ _ _ _| aaaaaaaaaaaaaa                    |_ _ _ _ _ _
            -----------------------------------

我想要的是:

            ___________________________________
_ _ _ _ _ _|           aaaaaaaaaaa             |_ _ _ _ _ _
_ _ _ _ _ _|           aaaaaaaa                |_ _ _ _ _ _
_ _ _ _ _ _|           aaaaaaaaaaaaaa          |_ _ _ _ _ _
            -----------------------------------

其中:

_ _ _ _ =在textview之外

| = TextView边缘

我试过android:gravity =" left | center"但它不起作用,任何想法?

由于

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
                xmlns:app="http://schemas.android.com/apk/res-auto"
                android:id="@+id/image_button_wrapper"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:gravity="center"
                android:layout_centerVertical="true">

    <ImageView
        android:id="@+id/left_button_image"
        android:layout_centerVertical="true"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginRight="@dimen/spacing_normal"/>

    <Textview
        android:id="@+id/textview"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_toRightOf="@id/left_button_image"
        android:gravity = "center|left|left"
        android:clickable="false"
        android:focusable="false"
        app:font_name="Roboto-Light.ttf"/>

我是什么(文字对齐但未居中)enter image description here

我想要什么(文本左对齐和居中对齐)(我手动添加填充以获取渲染,但它很脏并且不会适应所有文本):enter image description here

7 个答案:

答案 0 :(得分:8)

将Textview parent设为:

android:gravity = "center"

只需将Textview视为:

android:gravity = "center_vertical|left|start"
android:layout_margin="20dp"

答案 1 :(得分:2)

问题在于你的textview宽度,它只是将自己包裹在文本周围,并将其重力设置为居中,只是将其置于其包裹区域中心。

将宽度更改为匹配父级,将重力更改为居中。这可能会对你有所帮助

android:layout_width="match_parent"
android:gravity = "center"

替代方法:由于边界线对齐中心,与文本视图分开。您只需在文本视图中添加以下行。

  android:layout_centerHorizontal="true"

答案 2 :(得分:2)

如果将textview宽度更改为match_parent或给出一些固定宽度,您将获得所需的内容:

<TextView
    android:layout_width="100dp"
    //android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="Hi! This is amazing!!"
    android:gravity="center_horizontal"/>

答案 3 :(得分:1)

在你的textview中改变这个:

 android:gravity = "center|left|left"

 android:gravity = "center"

答案 4 :(得分:0)

请将RelativeLayout更改为LinearLayout make gravity and layout_gravity center

答案 5 :(得分:0)

用于从左侧开始文本并以重力为中心。 请使用像这样的重力属性,

android:gravity="center|start"

答案 6 :(得分:0)

我正在使用constraintLayout,这对我有用。

注意 textView 的 layout_width="wrap_content"

<androidx.constraintlayout.widget.ConstraintLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintBottom_toBottomOf="parent">


        <TextView
            android:id="@+id/headerTitle"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="center_horizontal|center_vertical"
            android:text="Sign Up"
            android:textSize="25sp"
            app:layout_constraintBottom_toTopOf="@id/subHeaderTitle"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent" />

        <TextView
            android:id="@+id/subHeaderTitle"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="1.Apple\n2.Orange\n3.Pear"
            android:textSize="16sp"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent" />

</androidx.constraintlayout.widget.ConstraintLayout>

enter image description here