• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Onclick listener for TextView

 
Ranch Hand
Posts: 162
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have written code for loading the spinner and creating few textview dynamically. And onlclick of one textview i need to navigate to another activity.

Problem here is onclick of the spinner, onclick method is called(with have been set to the awb_textView. I need this to onClick method to be called only
when the awb_textView textview is clicked on the spinner.

Thanks in advance!
 
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You should implement the OnItemSelectedListener interface and the onItemSelected() event handler. Check the Android Developers site: http://developer.android.com/guide/topics/ui/controls/spinner.html
 
Neeba Rebbaca
Ranch Hand
Posts: 162
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks for the reply. But here i didn't any action listener for spinner, i implemented only for TextView. But the here is, i need to move to next page, when i click on the textview, but here even on clicking on spinner, its taking to next page.
 
Neeba Rebbaca
Ranch Hand
Posts: 162
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Any help!!!
 
Bartender
Posts: 2270
20
Android Java ME Eclipse IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Instead of onClickListener try onTouchListener on TextView. You can also use android.text.SpannableString class to look the textview like a hyper link. An example code



 
reply
    Bookmark Topic Watch Topic
  • New Topic