AutoSizeTextType在布局中不起作用

时间:2018-01-09 10:07:04

标签: android android-support-library

我在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'

4 个答案:

答案 0 :(得分:1)

请确保适当的依赖性,例如appcompat,support

implementation 'com.android.support:appcompat-v7:26.1.0'

在这里,我做了一个简单的例子,请查看这个,这可能有助于发现问题。

示例: AutoSizingTextViewinKotlin

输出看起来像:

enter image description here

答案 1 :(得分:0)

请将buildToolsVersion 26.0.0或更高版本升级并将compileSdkVersion升级为 26或更高版本

答案 2 :(得分:0)

https://developer.android.com/guide/topics/ui/look-and-feel/autosizing-textview.html#setting-textview-autosize

  

如果在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)

您只需将支持库升级到beta2。

compile 'com.android.support:support-v4:26.0.0-beta2'

将项目build.gradle更改为:

allprojects {
    repositories {
        jcenter()
        maven {
            url 'https://maven.google.com'
        }
    }
}

这是像这样的输出..

enter image description here