Reputation: 1308
I want to create a layout which contain dynamic number of textviews, how to create the container layout to make it so it is possible to do something like this picture?
Upvotes: 0
Views: 61
Reputation: 1670
Use TokenAutoComplete
library to do this:
Following link may solve your problem: https://github.com/splitwise/TokenAutoComplete
<com.tokenautocomplete.ContactsCompletionView
android:id="@+id/searchView"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</RelativeLayout>
Upvotes: 1