由于Android中文字字符的增加,文本视图文本不会对齐中心?

时间:2014-08-19 12:01:28

标签: android

我有文字视图对齐图片视图的底部 - 中心。当我的字符较少时,它会正确显示图像视图的对齐中心,如图所示。enter image description here

但如果我有更多不。字符不会对齐 - 图像视图的中心,如下图enter image description here

中所示

我想对齐文本中心,即使它包含更多字符。我在下面添加了我的代码。

<RelativeLayout
    android:id="@+id/content"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_marginBottom="15dp"
    android:layout_marginTop="15dp" >

    <ImageView
        android:id="@+id/meme"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_marginLeft="15dp"
        android:layout_marginRight="15dp"
        android:scaleType="fitXY"
        android:src="@drawable/ic_launcher" />

    <TextView
        android:id="@+id/bottom_text"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:text="BOTTOM TEXT"
        android:textColor="@android:color/white"
        android:textSize="25dp" />
</RelativeLayout> 

1 个答案:

答案 0 :(得分:0)

使用以下代码:包含 android:gravity =&#34; center&#34; ,这将使视图中的文本成为中心。没问题多少人物!!!!!!!

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/content"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_marginBottom="15dp"
    android:layout_marginTop="15dp" >

    <ImageView
        android:id="@+id/meme"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_marginLeft="15dp"
        android:layout_marginRight="15dp"
        android:scaleType="fitXY"
        android:src="@drawable/ic_launcher" />

    <TextView
        android:id="@+id/bottom_text"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:gravity="center"
        android:layout_centerHorizontal="true"
        android:text="BOTTOM TEXT BOTTOM TEXT BOTTOM TEXT"
        android:textColor="@android:color/white"
        android:textSize="25dp" />
</RelativeLayout> 

指定:

指定当文本小于视图时,如何通过视图的x轴和/或y轴对齐文本。您可以参考here