Update ListView Textview vom Asyntask
问题 i need to update a textView from my asynctask. I have an custom adapter for the listview and there i want to have a countdown for each entry. I will start the asynctask for each entry from my Adapter. How can i update the textview each second from the asynctask? Thanks for help :) 回答1: If you post your code, I can give you a better answer. However, a common way to update views periodically is by using Handlers. private final Handler mHandler = new Handler(); //intialize in main thread public