Android материал дизайн `textAppearance` не работает - PullRequest
0 голосов
/ 17 апреля 2019

Очень плохо знаком с Android и пытается использовать дизайн материалов. В проекте "Привет, мир!" У меня есть такой макет:

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

к моим зависимостям.

Чего мне не хватает?

1 Ответ

2 голосов
/ 18 апреля 2019

У меня раньше была похожая проблема, попробуйте использовать

@style/TextAppearance.MaterialComponents.Headline3

вместо

?attr/textAppearanceHeadline3

для атрибута textAppearance.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...