TextView horizontal center in RelativeLayout

前端 未结 6 1294
一向
一向 2021-02-01 12:04

In my app screen, i want to show Heading as horizontally center. I tried with below layout xml codes




        
相关标签:
6条回答
  • 2021-02-01 12:31
    <?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
      android:layout_width="fill_parent"
      android:layout_height="fill_parent"
      android:layout_marginTop="10dip"
        >
      <TextView
        android:layout_centerHorizontal="true"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:text="Connections" />
    </RelativeLayout>
    
    0 讨论(0)
  • 2021-02-01 12:33

    android:gravity controls the appearance within the TextView. So if you had two lines of text they would be centered within the bounds of the TextView. Try android:layout_centerHorizontal="true".

    0 讨论(0)
  • 2021-02-01 12:43

    Use this:

    android:layout_centerHorizontal="true"
    

    within TextView

    0 讨论(0)
  • 2021-02-01 12:44

    only add this android:gravity="center_horizontal"

    <?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
      android:layout_width="fill_parent"
      android:layout_height="fill_parent"
      android:layout_marginTop="10dip" 
      android:gravity="center_horizontal"
      >
      <TextView
    
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="center_horizontal"
        android:text="Connections" />
    </RelativeLayout>
    
    0 讨论(0)
  • 2021-02-01 12:47

    replace textview with below code

    <TextView
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:gravity="center_horizontal"
    android:text="Connections" />
    
    0 讨论(0)
  • 2021-02-01 12:52

    use layout_centerInParent="true"(layout_centerInHorizontal,layout_centerInVertical)

    gravity means the algin of text on textview, not the view itself

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