gpt4 book ai didi

android - 在包中找不到属性 'autoSizeTextType' 的资源标识符

转载 作者:搜寻专家 更新时间:2023-11-01 08:26:00 25 4
gpt4 key购买 nike

我试图实现随着 Android O 的发布在 Api 级别 26 中添加的自动调整大小 TextView 。但是我在编译时遇到了上述错误。似乎 autoSizeTextType 参数不可用。我使用以下代码。

https://developer.android.com/preview/features/autosizing-textview.html

<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:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="net.ajith.androidlearning.MainActivity">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
app:autoSizeTextType="uniform" />

</RelativeLayout>

Gradle 依赖

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

Android 支持存储库:修订版 47

最佳答案

文档说:

The Support Library 26.0 Beta provides full support to the autosizing TextView feature on devices running Android versions prior to Android O.

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

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

不要忘记将项目 build.gradle 更改为:

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

关于android - 在包中找不到属性 'autoSizeTextType' 的资源标识符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45030014/

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