2

根据我的观察,下EditText图分为两部分:一个是保存值的简单网格,另一个是实际的EditText.

在此处输入图像描述

你们中有人知道任何EditText类似这样的库吗?或者有没有替代的解决方案?谢谢!

4

1 回答 1

3

这就是所谓的芯片 - 组件 - 谷歌设计指南

请参阅下面的这个库:-

  1. 令牌自动完成

  2. 材料芯片

例如像这样添加你的布局

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <com.tokenautocomplete.ContactsCompletionView
        android:id="@+id/searchView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

</RelativeLayout>

一切都完成了

或者您可以使用SpannableStingBuilderImageSpan自己创建

于 2015-07-31T06:46:41.500 回答