片段中的TextView对齐方式

时间:2018-06-06 09:24:55

标签: android android-studio

在我的cardFragment中,在我的主要活动中,我有这些类型的卡片,显示一些国家的例子和他们各自的名字。如您所见,TextView及其名称根据国家/地区名称更改。我该怎么做才能将TextView锁定在左侧和底部位置? Click here to see the image, please!

enter image description here

这是我的XML:

<android.support.constraint.ConstraintLayout 
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">


<ImageView
    android:id="@+id/imgFotoPais"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />

<TextView
    android:id="@+id/txtPaisNome"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="false"
    android:layout_alignParentStart="true"
    android:layout_marginBottom="8dp"
    android:layout_marginEnd="8dp"
    android:layout_marginStart="8dp"
    android:layout_marginTop="8dp"
    android:text="TextView"
    android:textColor="@color/colorWhite"
    android:textSize="24sp"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintHorizontal_bias="0.353"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="@+id/imgFotoPais"
    app:layout_constraintVertical_bias="0.9" />

</android.support.constraint.ConstraintLayout>

1 个答案:

答案 0 :(得分:0)

试试这个: - 在TextView中输入以下属性。

  

android:gravity: - 用于设置View内容的重力。

     

android:layout_gravity: - 用于设置视图或布局相对于其父布局的重力。