Android的新手,正在尝试使用材质设计。在一个hello world项目中,我具有以下布局:
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
android:textAppearance="?attr/textAppearanceHeadline3"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"/>
</androidx.constraintlayout.widget.ConstraintLayout>
textAppearance
属性将被忽略。我添加了:
api "com.google.android.material:material:1.1.0-alpha05"
依赖我。
我想念什么?
答案 0 :(得分:2)
我之前也遇到过类似的问题,请尝试使用
@style/TextAppearance.MaterialComponents.Headline3
代替
?attr/textAppearanceHeadline3
针对您的textAppearance
属性。