我試圖實現在Api級別26中添加的自動調整大小文本視圖,但是在編譯時出現上述錯誤。看起來像autoSizeTextType參數不可用。我使用下面的代碼。找不到包含屬性'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>
搖籃依賴
compile 'com.android.support:support-v4:26.0.0-alpha1'
支持Android庫:啓47
謝謝!我能解決依賴問題。但是Widget似乎並沒有像上面提到的那樣動態地改變我的文本大小。任何想法?我從佈局設置文本。 –