Android EditText库类似于Path?

时间:2015-07-31 06:43:44

标签: android android-edittext android-chips

在我的观察中,下面的EditText分为两部分:一部分是保存值的简单网格,另一部分是实际EditText

enter image description here

你们有没有人知道任何类似的EditText库吗?或者有其他解决方案吗?谢谢!

1 个答案:

答案 0 :(得分:3)

这称为Chips - Components - Google design guidelines

请参阅以下图书馆: -

  1. TokenAutoComplete

  2. Material Chips

  3.   

    例如,像这样添加你的布局

    <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>
    

    一切都已完成

    或者您可以使用 SpannableStingBuilder ImageSpan

    自行创建