在RemoteView中自动缩放TextView文本

时间:2018-06-03 17:49:48

标签: java android

我在TextView中使用RemoteView。但是那里的文字各不相同,所以有时它太长而且被部分切断了。我希望我的文本能够自动缩放,以便它适合TextView。我正在使用支持库,但app:autoSizeTextType="uniform"无法在RemoteView中工作。还有另一种方式吗?

这里是xml代码:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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="256dp">

    <TextView
        android:id="@+id/myTextView"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_alignParentTop="true"
        android:layout_marginLeft="8dp"
        android:layout_marginRight="8dp"
        android:gravity="center_vertical|center_horizontal"
        android:text="Some long text here."
        android:textSize="26sp" />
</RelativeLayout>

1 个答案:

答案 0 :(得分:0)

您可以考虑将自定义TextView用作answered here

我不太确定自动调整大小不适用于RemoteView。但是,如developer documentation所示,您可以考虑在案例中给出TextView的特定高度,如下所示。

<TextView
      android:layout_width="match_parent"
      android:layout_height="200dp"
      app:autoSizeTextType="uniform" />

只要您使用支持库26.0.0,您也可以考虑使用android.support.v7.widget.AppCompatTextView来支持以前的版本。

<android.support.v7.widget.AppCompatTextView
      android:layout_width="match_parent"
      android:layout_height="200dp"
      app:autoSizeTextType="uniform" />

您可以查看answer here以便更好地理解。