Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I am making an android app. In this, on one layout I have many Edit texts and I have to fill data. On click of Edit text I want to open a layout having numeric keywords and give option to enter/fill data. On click of OK button in keyword layout I want to set data in that Edit text. Is it possible that we don't have to reload or refresh that activity???
you could use use dialog fragments for the keyboard layout. what are you using now?
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 6 years ago.
Improve this question
[![image][1]][1]
How to display data in android like the given below picture
You have two possibilities:
1st. Use a single TextView and create the output by using some HTML tags in it, so that it will mach the given example. And then use Html.fromHtml() to format it.
2nd. Create as many TextViews in your layout as needed, in order to mach the desired UI. Not complicated at all.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I am creating an Android app for a college website. Now I want to add contents to each menu items, which on click should display paragraphs, images, etc. How to do this?
You have many ways to do this:
You can use two activities. ActivityA for the menu list and ActivityB for each list item's details when one is clicked on a menu item in ActivityA.
You can use an ExpandableListView.
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
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I want to make a book app, and to define or translate every sentence in it. The thing I want to know is how to make the translation appear as a pop up text for every single textview I click on it. For example "How are you" is in a textview and after I click and hold on it a pop up menu appear with the translate option.
It depend on how you want it to look. You could a toast, a context menu or a dialog.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
Please guide me to create view similar to honeycomb gallery where user can select from the ListView Fragment from the right and the contents are displayed in the left side. I want to replace the content as and when item is clicked in the ListView Fragment.
Thanks
EDIT: Looks like you want to use Master/Detail Flow. Check this simple tutorial.