gpt4 book ai didi

安卓 Material 芯片

转载 作者:IT老高 更新时间:2023-10-28 23:23:31 25 4
gpt4 key购买 nike

我想在我的应用程序中实现一个带有芯片的自动完成编辑文本,我想以一种在这里完成的方式来完成它:material design chips .首先,我想问一下是否有某种小部件(可能是新支持库的一部分)或我可以使用以轻松实现的解决方案。 (我知道之前有人问过这个问题,但我只是想知道在此期间是否发生了一些变化)。我还发现了这个 library ,但我不知道如何使用它(我可以使用它)来自动完成我的数据集...有没有人使用过这个库并且可以分享他们的经验?

任何帮助将不胜感激!

最佳答案

新的Material Components for Android包含组件 Chip .

您可以将芯片添加到您的布局文件中:

<com.google.android.material.chip.Chip
android:id="@+id/some_chip"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="This is a chip" />

enter image description here

与经典Design Support Library 28.0.0你可以使用这个包:

<android.support.design.chip.Chip
../>

您可以使用这些属性自定义组件:

  • android:checkable: 如果true,可以切换芯片。如果false,芯片就像一个按钮
  • app:chipIcon: 用于显示芯片内的图标
  • app:closeIcon: 用于在芯片内显示关闭图标

你可以找到官方documentation here .

关于安卓 Material 芯片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28045091/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com