Android没有在设备/模拟器上垂直居中TextView的文本(但在Android Studio的设计器视图中很好)

时间:2016-05-15 17:22:13

标签: android android-layout textview android-relativelayout android-studio-2.0

我有这个设置:

<RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal"
        android:id="@+id/postHeader">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="CP"
            android:id="@+id/initialsView"
            android:layout_alignTop="@+id/avatarView"
            android:layout_alignLeft="@+id/avatarView"
            android:layout_alignBottom="@+id/avatarView"
            android:layout_alignRight="@+id/avatarView"
            android:background="@drawable/avatar_background"
            android:textColor="@color/white"
            android:gravity="center"
            android:textStyle="bold"
            android:textSize="16sp" />

        <com.makeramen.roundedimageview.RoundedImageView
            app:riv_corner_radius="20dp"
            android:layout_width="40dp"
            android:layout_height="40dp"
            android:id="@+id/avatarView"
            android:layout_alignParentTop="true"
            android:layout_alignParentLeft="true"
            android:layout_alignParentStart="true"
            android:layout_marginTop="14dp"
            android:layout_marginLeft="20dp"
            android:layout_marginBottom="6dp"
            app:riv_border_color="@color/lightGray"
            app:riv_border_width="0.2dp" />

    ...
/>

TextView正确对齐图像视图。 Android Studio中的一切都很好:

enter image description here

然而,当我在实际设备(Android 4.4.4)或模拟器(Android 6.0)上运行时,我得到文本(屏幕截图中的“CP”)一直到顶部,就像我没有设置垂直引力。我尝试将textAlignment,宽度和高度设置为match_parent,将layout_centerInParent设置为both,将重力设置为center_vertical明确,将includeFontPadding设置为false,但没有用。它仍然没有垂直居中(虽然水平很好)。

我做错了什么?为什么它在Android Studio上显示正确?

1 个答案:

答案 0 :(得分:0)

好的,经过一番调查,我发现了问题。似乎已被破坏:https://code.google.com/p/android/issues/detail?id=63673

在链接上实施解决方案解决了我的问题:

  private static final int AT_MOST_UNSPECIFIED = MeasureSpec.makeMeasureSpec((1<<30)-1, MeasureSpec.AT_MOST);

  @Override
  protected void onMeasure(int widthSpec, int heightSpec)
  {
    // RelativeLayout has bugs when measured in UNSPECIFIED height mode that were supposedly
    // fixed in API 18. However the 'fix' does breaks gravity == center_vertical in TextView. 
    // https://code.google.com/p/android/issues/detail?id=63673
    if (MeasureSpec.getMode(heightSpec) == MeasureSpec.UNSPECIFIED) heightSpec = AT_MOST_UNSPECIFIED;
    super.onMeasure(widthSpec, heightSpec);
  }