How do I center the hint text within an EditText in Android?

后端 未结 14 1471
走了就别回头了
走了就别回头了 2020-12-05 12:54

I need to center the Hint text within an EditText in Android. How do I do this?

相关标签:
14条回答
  • 2020-12-05 13:23
    <android.support.design.widget.TextInputLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginEnd="16dp"
            android:layout_marginStart="16dp"
            android:layout_marginTop="8dp">
    
            <android.support.design.widget.TextInputEditText
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:gravity="center"
                android:hint="ENTER PIN"
                android:inputType="numberPassword" />
        </android.support.design.widget.TextInputLayout>
    

    Note: in the tag TextInputEditText,the property

    android:gravity="center"

    is what makes the deal of aligning the text in the center including the hint text

    0 讨论(0)
  • 2020-12-05 13:24

    Use this xml attribute:

    android:gravity="center"

    0 讨论(0)
提交回复
热议问题