Android - OpenSansBTextView中的中心文本

时间:2017-11-16 10:40:54

标签: android xml android-layout android-constraintlayout

我正在使用XML设计约束布局。

我有一个OpenSansBTextView,我需要将我的文字集中在其中。它居中水平垂直居中。我不知道为什么。这是我的xml文件。你能看出我的错误吗?

<android.support.constraint.ConstraintLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/colorAccent"
    android:id="@+id/dashboard">

    <com.doyousonder.android.utils.RochesterTextView
        android:id="@+id/YourActivity"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintBottom_toBottomOf="parent"
        android:layout_marginStart="25dp"
        app:layout_constraintVertical_bias="0.34"
        android:text="@string/YourActivity"
        android:textColor="@color/colorPrimaryMoreDark"
        android:textSize="23sp" />

    <com.doyousonder.android.utils.OpenSansRTextView
        android:id="@+id/YouVoted"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/YourActivity"
        android:layout_marginTop="15dp"
        android:layout_marginStart="20dp"
        android:text="@string/YouVoted"
        android:textColor="@color/colorPrimaryMoreDark"
        android:textSize="15sp" />

    <com.doyousonder.android.utils.OpenSansSBTextView
        android:id="@+id/VoteCount"
        android:layout_width="29dp"
        android:layout_height="35dp"
        app:layout_constraintStart_toEndOf="@+id/YouVoted"
        app:layout_constraintTop_toTopOf="@+id/YouVoted"
        app:layout_constraintBottom_toBottomOf="@+id/YouVoted"
        android:layout_marginStart="5dp"
        android:background="@drawable/more_curved_edge_button_button_primarycolor_background"
        android:gravity="center"
        android:text="1"
        android:textAlignment="center"
        android:textSize="25sp" />

1 个答案:

答案 0 :(得分:0)

您没有提供太多代码可供使用,即youVoted变量是什么。我假设youvoted是您的父布局

我认为你的问题来自你如何设置你的约束。试试这些

...other layout info
    app:layout_constraintBottom_toBottomOf="@+id/YouVoted"
    app:layout_constraintStart_toStartOf="@+id/YouVoted"
    app:layout_constraintTop_toTopOf="@+id/YouVoted"
    app:layout_constraintEnd_toEndOf="@+id/YouVoted"/>

<强>解释 我相信你犯的错误是说明你的textview应该从youvoted版面的末尾开始,而不是说它应该 从一开始开始 {1}}布局。

更改 youvotedapp:layout_constraintStart_toEndOf="@+id/YouVoted"

还添加结束约束。

app:layout_constraintStart_toStartOf="@+id/YouVoted"