I am trying to fill the list view's row to some percent with a color. This should be done after user clicks on any of the list items.
It is hard to exlain so please see the below image:
Please tell me how to proceed, I do not have any idea how can this be implemented. I am thinking about adding a view after click event by user and setting the background color of this view.
Please let me know if any other way is possible.
Thanks
I think one option is described below:
I would created a List view and for each item in the list, I would create two Views:
Note: This simple View with progress will have same height for TextView. It is fully colored with background color (blue for example). Then, you can set how long this view should be by setting its weight (from 0 to 100). Weight will be dinamically changed in the adapter. Other properties you can set in layout resource file (list_view_each_row.xml).
Also, I believe you have to create your own custom list adapter (to handle properly if list should display text or progress). This custom list should extend BaseAdapter and should override mandatory methods.
So, after clicking in any option, you can change your adapter (you should inform your adapter that user cliecked in some option). Based on this new information, adapter can hide all TextViews and display only the Views with progress.
Below is a example code: You can add security checks (null poiter) in the adapter. I used a simple array. You can change to ArrayList and add/removes items dinamically. Also, you can set progress values only inside "OnItemClickListener". It is just a example.
MainActivity
MyCustomListAdapter.java
activity_main.xml
list_view_each_row.xml