gpt4 book ai didi

android - TextView autoSizeTextType 未在 xml 中检测到

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:39:19 26 4
gpt4 key购买 nike

我正在寻找自动更改 TextView 大小的方法。我也找到了解决方案。这里是官方Doc用于自动调整 TextView 的大小。但我仍然无法解决它。当我粘贴 autoSizeTextType 时,它​​在 xml 文件中显示错误。

这是我的xml代码和gradle代码 fragment

我的activity.xml

<?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"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white"
android:orientation="vertical">

<include layout="@layout/toolbar" />

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:autoSizeTextType="uniform"/>


</LinearLayout>

Gradle fragment

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:support-v4:25.2.0'//Added support library
compile 'com.android.support:appcompat-v7:25.2.0'
compile 'com.android.support:design:25.2.0'
testCompile 'junit:junit:4.12'
}

最佳答案

使用 AppCompatTextView 和 supportLibrary 26.0.1

<?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="match_parent">

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

</LinearLayout>

关于android - TextView autoSizeTextType 未在 xml 中检测到,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44410809/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com