从getView中的线程内更新视图?

时间:2016-02-27 07:02:35

标签: android baseadapter

我有一个活动类,它调用我的自定义适配器类,扩展了基本适配器。在我的getView方法中,我有一个button.setOnClickListener,其中有一个下载数据的线程。我想在用户点击时将按钮文本设置为“下载”,然后在下载完成后将按钮文本设置为“已完成”。我怎么能这样做?

public class MyActivity extends Activity {
//some code here
private void setAdapter(ArrayList arrayList) {      
    listView.setAdapter(new UserAdapter(context,arrayList));        
}
}


public class UserAdapter extends BaseAdapter {

@Override
public View getView(int position, View convertView, ViewGroup parent) {     
     Holder holder = new Holder();      
     holder.button = (Button) view.findViewById(R.id.button);
     holder.button.setOnClickListener(new View.OnClickListener() {
     @Override
     public void onClick(View v) {
        new Thread(new Runnable() {
            @Override
            public void run() {

                try{
                  //set button text to "downloading"
                  //establish an http connection and download data
                  //after download done, if successfull set button text to downloaded
                  //if download failed, set button text to failed.
                } catch (Exception exception) {
                }
            }
            }
        ).start();
      }
    });

    return view;
}
private class Holder {
    private Button button;
}
}

1 个答案:

答案 0 :(得分:0)

为了更新线程内部的视图,使用getView方法中的runOnUithread,就像这样。在活动中你可以直接使用,但在活动之外你必须使用上下文。

context.runOnUiThread(new Runnable(){
    public void run() {
        //If there are stories, add them to the table

      try{
           }
        } catch (final Exception ex) {
            Log.i("---","Exception in thread");
        }
    }
});

对于http请求,您可以使用asyncTask。