Android 类似于Path的EditText库?
Android EditText library similar to Path?
根据我的观察,下图的 EditText
分为两部分:一个是保存值的简单网格,另一个是实际的 EditText
.
你们有谁知道任何 EditText
库的性能与此类似吗?还是有其他解决方案?谢谢!
那叫Chips - Components - Google design guidelines
查看下面的库:-
For example Add in your layout like this
<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
自行创建
根据我的观察,下图的 EditText
分为两部分:一个是保存值的简单网格,另一个是实际的 EditText
.
你们有谁知道任何 EditText
库的性能与此类似吗?还是有其他解决方案?谢谢!
那叫Chips - Components - Google design guidelines
查看下面的库:-
For example Add in your layout like this
<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>
一切都完成了