mercredi 2 mars 2016

How can I do Progress bar with sqlite?

I would like this here. I've created a database category(id,name,amount,limit) and display that:

ArrayList<HashMap<String, String>> categoryList =  repo.getCategoryList();
ListAdapter adapter = new SimpleAdapter( MainActivity.this,categoryList, R.layout.view_category_entry, new String[] { "id","name"}, new int[] {R.id.category_Id, R.id.category_name});
setListAdapter(adapter);

I do not know how to do that showed the actual amount of money and limit.

Aucun commentaire:

Enregistrer un commentaire