Hey All,
Thanks for the great tutorial.
Firstly, I have followed Anddev's several tutorials like this 1 and tab, and some others mashing them up to get a cool app.
Thanks to this tutorial, i managed to upgrade my Listview to have icons on them and somehow it does not allow me to implement onClickListener() or onItemClickListener().The codes i use are almost exactly the same as the one from the tutorial.
An extract of the code
- Code: Select all
IconifiedTextListAdapter itla = new IconifiedTextListAdapter(this);
itla.addItem(new IconifiedText("Bakeries", getResources().getDrawable(
R.drawable.makan_bakeries)));
itla.addItem(new IconifiedText("Bars & Wines", getResources()
.getDrawable(R.drawable.makan_barswines)));
setListAdapter(itla);
The code works and shows the icon of a bakery next to the word Bakeries, but i dun noe how to make the app react to ~clicks~.
Thanks in advance!! Cheers
