找不到材料芯片的“ app:closeIconVisible”

时间:2018-08-27 13:02:36

标签: android material-design android-support-library androiddesignsupport android-chips

我正在尝试通过支持库使用材料组件。使用以“ app:....”开头的芯片属性时,出现以下错误。我不是首选迁移到androidx,因为它还不稳定。我应该下载android studio 3.2并迁移到androidx吗?你能给我一些建议吗? 感谢您的提前帮助。

错误:找不到属性“ com.tarifis.tarifis:closeIconVisible”。

 <android.support.design.chip.Chip
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="some text"
        app:closeIconVisible="visible"
        app:closeIcon="@drawable/ic_close_black_24dp"
        />

这是gradle文件

apply plugin: 'com.android.application'
android {
    compileSdkVersion 28
    buildToolsVersion '27.0.3'
    defaultConfig {
        applicationId "com.tarifis.tarifis"
        minSdkVersion 21
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
        repositories {
            maven { url 'https://oss.sonatype.org/content/repositories/ksoap2-android-releases/' }
        }
    }
}
dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
    implementation 'com.android.support.constraint:constraint-layout:1.1.2'
    implementation 'com.google.code.ksoap2-android:ksoap2-android:3.6.1'
    implementation 'com.android.support:cardview-v7:28.0.0-alpha3'
    implementation 'com.android.support:recyclerview-v7:28.0.0-alpha3'
    implementation 'com.koushikdutta.ion:ion:2.1.6'
    implementation 'com.android.support:support-v4:28.0.0-alpha3'
    testImplementation 'junit:junit:4.12'
    implementation 'com.android.support:appcompat-v7:28.0.0-alpha3'
    implementation 'com.android.support:design:28.0.0-alpha3'
    //implementation 'com.google.android.material:material:1.0.0-rc01'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
}

1 个答案:

答案 0 :(得分:0)

幸运的是,源代码是打开的。以下是源代码中的片段,该片段显示了我正在使用的库版本可以使用哪些属性。由于您使用的库版本不同于我的库版本,因此我建议您自己在studio中查找。

为了找到答案,只需Ctrl键单击xml中的 com.google.android.material.chip.ChipGroup ,然后继续操作 com.google.material.android .chip.ChipDrawable 类的 loadFromAttributes()方法。

以下是供您快速参考的摘录:

AutoComlete

该库没有 app:closeIconVisible =“ visible” 属性,可以从代码中看到。好像您的版本不太合适。考虑使用app:closeIconEnabled =“ false”隐藏并仅设置可绘制对象(如您所愿)以显示。尽管我建议根据您的代码库允许将其更新为最新版本,因为这些库在alpha版本中经常更新。

快乐编码!