更新 我只是使用setTextScaleX而不是setScalex来缩放textView,它的工作方式和我预期的一样。
就像上面的照片一样。 我使用ConstraintLayout来保持“$”和中心textView和“00”之间的空格。 当我将5555设置为中心textView时,它变得更宽,但我想保持其原始大小。 所以我缩放了“5555”部分,我发现约束也没有更新。 有人可以给我一些建议吗? 非常感谢!
我的布局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"
tools:context="com.echo.tipcalculator.fragments.FeeUnitFragment">
<TextView
android:id="@+id/fee_title"
android:layout_width="150dp"
android:layout_height="wrap_content"
android:layout_marginLeft="16dp"
android:layout_marginTop="16dp"
android:text="title"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintTop_toTopOf="parent"
android:layout_marginStart="16dp" />
<TextView
android:id="@+id/fee_unit"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="$"
android:textSize="20dp"
android:layout_marginTop="8dp"
app:layout_constraintTop_toBottomOf="@+id/fee_title"
app:layout_constraintLeft_toLeftOf="@+id/fee_title" />
<TextView
android:id="@+id/fee_main"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="8dp"
android:layout_marginStart="8dp"
android:clickable="true"
android:ellipsize="end"
android:gravity="top"
android:includeFontPadding="false"
android:maxLines="1"
android:text="0"
android:textSize="80dp"
app:layout_constraintLeft_toRightOf="@+id/fee_unit"
app:layout_constraintTop_toTopOf="@+id/fee_unit" />
<TextView
android:id="@+id/fee_decimal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="00"
android:textSize="20dp"
app:layout_constraintTop_toTopOf="@+id/fee_main"
app:layout_constraintLeft_toRightOf="@+id/fee_main"
android:layout_marginLeft="8dp"
android:layout_marginStart="8dp" />
</android.support.constraint.ConstraintLayout>