我已阅读official website上的文档。但是根据文档,我无法在我的项目中实现Chip。 Android Studio无法找到并导入芯片类以及芯片视图。
我也注意到在Google Developer site上没有Chip类的参考。
有一些类似的问题。但所有答案都指向使用第三方库。但我正在尝试使用Android支持库中的Chips组件。
答案 0 :(得分:5)
该功能包含在支持库版本28.0.0-alpha1中。 要使用此功能:
在app gradle文件中:
android {
compileSdkVersion 'android-P'
}
dependencies {
implementation 'com.android.support:appcompat-v7:28.0.0-alpha1'
implementation 'com.android.support:design:28.0.0-alpha1'
// OR
implementation 'com.android.support:design-chip:28.0.0-alpha1'
}
在布局文件中:
<android.support.design.chip.Chip
style="@style/Widget.MaterialComponents.Chip.Entry"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:chipIcon="@drawable/ic_arrow_drop_down_black_24dp"
app:chipText="hello"/>
答案 1 :(得分:1)
如果您正在使用材料库
您可以使用在build.gradle中添加的物料芯片com.google.android.material.chip.Chip
和implementation 'com.google.android.material:material:1.0.0'
Filter style="@style/Widget.MaterialComponents.Chip.Filter"
Choice Chips style="@style/Widget.MaterialComponents.Chip.Choice"
Entry input: style="@style/Widget.MaterialComponents.Chip.Entry"