| Author |
How to create a toast via button click
|
zoheb hassan
Ranch Hand
Joined: Apr 01, 2009
Posts: 146
|
|
This is the code i wrote for it, I just want to post a toast message when user clicks a button
The main.xml file is as follows
and the Toaster.java file is as follows
Can you please look at this code and tell me what i am doing wrong
Thanks
|
 |
Monu Tripathi
Rancher
Joined: Oct 12, 2008
Posts: 1365
|
|
1. To listen for click events, you need to attach a OnClickListener with the button (using setOnClickListener() API)
2. When you override the onClick() method, use it to display Toast.
|
[List of FAQs] | [Android FAQ] | [My Blog] | [Samuh Varta]
|
 |
zoheb hassan
Ranch Hand
Joined: Apr 01, 2009
Posts: 146
|
|
Hey Monu, I did initially try this piece of code however i did not work,It was throwing the following error
The method makeText(Context, CharSequence, int) in the type Toast is not applicable for the arguments (new View.OnClickListener(){}, String, int)
The code i initially tried is as follows
|
 |
zoheb hassan
Ranch Hand
Joined: Apr 01, 2009
Posts: 146
|
|
Well Problem solved.I just had to set a property with a button in xml
all the code remains the same the only addition takes place in main.xml file under button attribute which is
Thats about it
|
 |
Krishna Srinivasan
Ranch Hand
Joined: Jul 28, 2003
Posts: 1803
|
|
This article has good explanation:
http://techbreaths.com/2013/01/how-create-toast-message-android/
|
Krishna Srinivasan
OCAJP Mock Questions
|
 |
Android ituts
Greenhorn
Joined: Apr 02, 2013
Posts: 4
|
|
|
 |
 |
|
|
subject: How to create a toast via button click
|
|
|