Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Android

Adding one to an integer on tap

I am developing an app for andorid wear and would like to know the best way to create it. I would like there to be a textView that every time the user taps it adds 1 to an integer. Should I detect the touch on the view, textview or use a button? Thanks for your help.

1 Answer

Doug Ray
Doug Ray
7,493 Points

Hey Tom just a suggestion but i would register a on-click listener that attaches into the view and adds one to your integer. If its going to be wearable then having a button may be hard for the user to click depending on the size.

hope this helps

Doug

Thanks.