Проблемы с настройкой текста чипа в группе чипов - PullRequest
0 голосов
/ 23 декабря 2018

Вероятно, решение моей проблемы очень простое, но, очевидно, я что-то упустил и застрял с этим сам.

Проблема:

Я хочуесть группа ChipGroup, где пользователи могут фильтровать контент из RecyclerView, но, к сожалению, я получаю сообщение об ошибке при попытке установить текст.

/home/noah/StudioProjects/.../app/src/main/res/layout/filter_dialog.xml:104: error: attribute text (aka [...]:text) not found.

Код:

<android.support.design.chip.ChipGroup
            android:id="@+id/chipGroup"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="8dp"
            app:layout_constraintTop_toBottomOf="@+id/box_m">

            <android.support.design.chip.Chip
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                app:text="Lab 1" />

            <android.support.design.chip.Chip
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                app:text="Lab 2" />

...

Что яуже пробовал:

  • переключение между app:text и app:chipText

  • добавление implementation group: 'com.google.android.material', name: 'material', version: '1.1.0-alpha02', но это вызывало различные проблемы с другимиреализации, которые у меня есть в моем gradle-файле

зависимости

 {
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    implementation 'com.android.support:appcompat-v7:28.0.0'
    implementation 'com.android.support:design:28.0.0'
    implementation 'com.android.support:support-v4:28.0.0'
    implementation 'com.google.firebase:firebase-auth:16.1.0'
    implementation 'com.google.firebase:firebase-core:16.0.6'
    implementation 'com.google.firebase:firebase-database:16.0.5'
    implementation 'com.google.firebase:firebase-storage:16.0.5'
    implementation 'com.github.clans:fab:1.6.4'
    implementation 'com.crystal:crystalrangeseekbar:1.1.1'
    implementation 'com.android.support:cardview-v7:28.0.0'
    implementation 'com.android.support:recyclerview-v7:28.0.0'
    implementation 'com.android.support:support-vector-drawable:28.0.0'
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
    implementation 'com.github.esafirm.android-image-picker:imagepicker:1.13.0'
    implementation 'com.google.firebase:firebase-functions:16.1.3'
    implementation 'com.diogobernardino:williamchart:2.5.0'
    implementation 'com.github.bumptech.glide:glide:4.8.0'
    implementation 'com.firebaseui:firebase-ui-storage:4.1.0'
    implementation 'com.google.firebase:firebase-messaging:17.3.4'
    annotationProcessor 'com.github.bumptech.glide:compiler:4.8.0'
    testImplementation 'junit:junit:4.12'
}
apply plugin: 'com.google.gms.google-services'

1 Ответ

0 голосов
/ 23 декабря 2018

Из документов :

android: text - Устанавливает текст чипа.

...