と を作成するメイン アクティビティがListView
ありますCustom Adapter
。リストが事前に作成されているListView
場合はデータを入力できますが、動的にフェッチされたデータを使用してデータを入力するにはどうすればよいですか?
主な活動
public class MainActivity extends Activity {
private ListView myListView;
private Context ctx;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.MainActivity);
ctx = this;
List<Items> myList = new ArrayList<Items>();
myList.add(new Item("Name 1", "Desc 1"));
myList.add(new Item("Name 2", "Desc 2"));
myList.add(new Item("Name 3", "Desc 3"));
myList.add(new Item("Name 4", "Desc 4"));
myList.add(new Item("Name 5", "Desc 5"));
myListView = (ListView)findViewById(R.id.list);
MyListAdapter myAdapter = new MyListAdapter(ctx,R.layout.listitem, myList);
myListView.setAdapter(myAdapter);
}
}
MyListAdapter
public class MyListAdapter extends ArrayAdapter<Items> {
private int resource;
private LayoutInflater mLayoutInflater;
public MyListAdapter ( Context ctx, int resourceId, List<Items> objects) {
super( ctx, resourceId, objects );
resource = resourceId;
mLayoutInflater = LayoutInflater.from( ctx );
}
@Override
public View getView ( int position, View convertView, ViewGroup parent ) {
convertView = ( RelativeLayout ) mLayoutInflater.inflate( resource, null );
Items item = (Items) getItem( position );
TextView txtName = (TextView) convertView.findViewById(R.id.listName);
txtName.setText(item.getName());
TextView txtDesc = (TextView) convertView.findViewById(R.id.listDescription);
txtDesc.setText(item.getDesc());
return convertView;
}
}
アイテム
public class Item {
private String name;
private String desc;
public Item(String name, String desc) {
super();
this.name = name;
this.desc = desc;
}
//getters and setters
}
バックグラウンドの関数が項目をカスタム アダプタに取得し、ListView に入力するようにコードを変更するにはどうすればよいですか? を使用してみましたAsyncTask
が、うまく動作させることができませんでした。
編集:物事をテストするために、後に以下AsyncTask
を追加しました。1 から 5 までのカウントを確認してから完了できるという点で機能しています。アダプターを更新するに
はどうすればよいですか?
に何を渡し、何を返す必要がありますか?MainActivity
onCreate()
AsyncTask
ListView
onCreate()
AsyncTask
AsyncTask
private class GetItems extends AsyncTask<Void, Integer, Void> {
@Override
protected void onPreExecute() {
super.onPreExecute();
TextView myMsg = (TextView)findViewById(R.id.topMsg);
myMsg.setText("Loading...");
}
@Override
protected Void doInBackground(Void... params) {
TextView myMsg = (TextView)findViewById(R.id.topMsg);
for (int i=1;i<=5;i++) {
try {
Thread.sleep(1000);
publishProgress(i);
} catch (InterruptedException e) {
}
}
return null;
}
protected void onProgressUpdate(Integer... values) {
TextView myMsg = (TextView)findViewById(R.id.topMsg);
myMsg.setText(Integer.toString(values[0].intValue()));
}
@Override
protected void onPostExecute(Void result) {
TextView myMsg = (TextView)findViewById(R.id.topMsg);
myMsg.setText("Done!");
}
}