我在autoSizeTextType
使用,但无效:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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="50dp"
android:orientation="vertical">
<android.support.v7.widget.AppCompatTextView
android:id="@+id/title_total_amount_textview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:maxLines="1"
android:layout_marginTop="16dp"
android:text="AAAAAAAasdaDawdasdqwdAD ASDKNALKDNAJFND FJSLDFJMASdsfsfwerfdsfwerewrefsdfF EFSDF KsndfkJABSF.JDBSNFJSDBZX KDN.FAKFBBBBBBXXXXXXXXXXXXXXXXXXXXXXXXX"
app:autoSizeTextType="uniform" />
</LinearLayout>
和
compileSdkVersion 27
buildToolsVersion '27.0.2'
compile 'com.android.support:support-v4:27.0.2'
答案 0 :(得分:1)
请确保适当的依赖性,例如appcompat,support
implementation 'com.android.support:appcompat-v7:26.1.0'
在这里,我做了一个简单的例子,请查看这个,这可能有助于发现问题。
示例: AutoSizingTextViewinKotlin
输出看起来像:
答案 1 :(得分:0)
请将buildToolsVersion 26.0.0或更高版本升级并将compileSdkVersion升级为 26或更高版本。
答案 2 :(得分:0)
你可以这样试试:如果在XML文件中设置自动调整大小,则不建议使用 价值&#34; wrap_content&#34;对于layout_width或layout_height属性 一个TextView。它可能会产生意想不到的结果。
<TextView
android:layout_width="match_parent"
android:layout_height="200dp"
android:autoSizeTextType="uniform" />
答案 3 :(得分:0)