InterviewSolution
Saved Bookmarks
| 1. |
What is an android toast ? |
|
Answer» An ANDROID toast is a form of MESSAGE, which REFLECT for a user in terms of feedback. This message reflect for a very SHORT TIME & goes away automatically. ExampleToast.makeText(getApplicationContext(),"Best Interview Questions",Toast.LENGTH_SHORT).show(); |
|