Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I have to add multiple options to an edit_text view as shown below, the views can be adjustable with the parent. I am not getting an idea how to do this, Can any one help how can we make this UI.
Thanks.
Take a look at these open source project in Github
https://plus.google.com/+RomanNurik/posts/WUd7GrfZfiZ
https://github.com/splitwise/TokenAutoComplete
https://github.com/kpbird/chips-edittext-library
See the below ScreenShots for the same
Hope this is what you are looking for.
There are some SO posts which may meet your need.Refer the below posts,
Creating a custom editText with tag-like feature
Contact Bubble EditText
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
I wonder how to create a pin keyboard like this layout, in this layout, we have a pinview and Pin keyboard just and, I still looking on GitHub but they using a library not made the layout by self, maybe someone can help me to solve this case, thank you for your help
It is easy.
You can use this
https://github.com/davidmigloz/number-keyboard
Or you can design this by adding buttons to your layout.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
is it possible to do? if possible then what element i should use for this. I searched so many time in google but not found functionality like this.
Just show and hide layout it will give you effect like drop down .
We can do every thing we are androider's look at this awesome example -http://www.londatiga.net/it/how-to-create-quickaction-dialog-in-android/
you can do like this also much easy -http://androidcodesnippetsblog.blogspot.in/2013/09/android-custom-dialog-with-popup.html
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I'm thinking of something like this in material design:
Say you tap something, and a full width display overlays the content for about a third of the page.
I'm sure I've seen this type of thing before, but I've got no idea what it's called. Can someone tell me?
It is called Bottom Sheets.
Check it out here
Maybe what you are looking for is BottomSheet from support library 23.2
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I want to learn how to create custom android views. I don't want to use any library. I have looked searched for it.
You can create your own view using layouts and inject into the view by dialog. On click you can handle the calendar object.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I need you to find the best way for build my view.
This is a page listing questions : I can use a listview, BUT,
The problem is :
Questions can be deleted
Questions can be added
Questions can be modified
..and the order can be changed.
I also thought to simulate a listview by adding fragment.
Can i make this method without weigh down the view ?
Thank you in advance for your ideas!
Bryan
Use RecyclerView to implement that.