TextView内容与左对齐

时间:2017-02-19 21:56:55

标签: android textview alignment

我有简单的recycler_view_item,我有文本视图,应显示一些数量(图片左侧) recycleler_view_item TextView:

<TextView
    android:text="500"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/debtors_item_leftamount"
    android:textSize="@dimen/debtors_left_amount_size"
    android:layout_weight="1"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    app:layout_constraintRight_toLeftOf="@+id/debtors_item_arrow"
    android:layout_marginEnd="32dp"
    android:textAlignment="textStart"
    android:layout_marginRight="32dp"/>

有人知道如何让它像左图那样左对齐吗?

我已经尝试了

android:textAlignment="textStart"
android:textAlignment="viewStart"
android:gravity=start, left, even top or any other

没有任何改变。

Image

2 个答案:

答案 0 :(得分:0)

这应该有效

android:layout_width="match_parent"

android:gravity="left"

答案 1 :(得分:0)

这个怎么样?

您将回收器视图的内容包装在线性布局中,如下所示::

<LinearLayout
  android:layout_width="match_parent"
  android:layout_height="wrap_parent"
  android:weightSum="10"
  android:gravity="center">

  //use the weight to define the layout_width="0" and layout_weight of the child elements 
  //define weight as required as matching your requirements.

  //example below for Image View you are using
  <ImageView
    android:layout_width="0dp"
    android:layout_height="match_parent"
    android:layout_weight="1.5"
    android:src="@drawable/image"
    android:gravity="center">

</LinearLayout>

这也将从设备角度为您提供固定的响应宽度和高度。您也可以使用重力来定义元素的位置。