[android-developers] Re: setting an icon in the application.

2010-03-15 Thread NewDev
Hi, Thanks for the reply. Yes, I used the GridView and SetOnItemClickListener. Now am able to click on any icon and display the details on other screen. I have a second screen or activity, clicking on first icon it should open the second screen and clicking on second icon it should open the third

[android-developers] Re: setting an icon in the application.

2010-03-15 Thread NewDev
Sorry for the previous mail. I got it how to do it :-) Now I am able to achieve what I wanted it :-) Thanks again, On Mar 11, 10:08 pm, Makas Tzavellas makas.tzavel...@gmail.com wrote: Sounds like you want to use a GridView, create a custom adapter that returns an ImageView and set

Re: [android-developers] Re: setting an icon in the application.

2010-03-15 Thread murali raju
or a simple way would be use compound drawable of textview. On Mon, Mar 15, 2010 at 5:31 PM, NewDev kna...@gmail.com wrote: Sorry for the previous mail. I got it how to do it :-) Now I am able to achieve what I wanted it :-) Thanks again, On Mar 11, 10:08 pm, Makas Tzavellas

[android-developers] Re: setting an icon in the application.

2010-03-11 Thread James Wang
Please download android source and study packages/apps/Launcher -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

[android-developers] Re: setting an icon in the application.

2010-03-11 Thread Makas Tzavellas
Sounds like you want to use a GridView, create a custom adapter that returns an ImageView and set OnItemClickListener to activate your desired behaviour. You would probably want to take a look at the API Demos that uses ListViews for some examples. On Mar 11, 5:55 pm, NewDev kna...@gmail.com