I'm new to android programming.Can any one give me a simple example showing a custom toast notification in android? Thanks in advance
|
|
Use below code of custom toast, it may be help you. toast.xml
MainActivity.java
And Check below links also for custom toast |
|||||||
|
|
|
STEP 1: First Create an layout for custom toast in res/layout/custom_toast.xml:
STEP 2: In Activity code get above custom view and attach to Toast:
For more help see how we Create custom Toast in Android: http://developer.android.com/guide/topics/ui/notifiers/toasts.html |
|||||||||
|
|
see link Here you find your solution and try Creating a Custom Toast View If a simple text message isn't enough, you can create a customized layout for your toast notification. To create a custom layout, define a View layout, in XML or in your application code, and pass the root View object to the setView(View) method. For example, you can create the layout for the toast visible in the screenshot to the right with the following XML (saved as toast_layout.xml):
Notice that the ID of the LinearLayout element is "toast_layout". You must use this ID to inflate the layout from the XML, as shown here:
First, retrieve the LayoutInflater with getLayoutInflater() (or getSystemService()), and then inflate the layout from XML using inflate(int, ViewGroup). The first parameter is the layout resource ID and the second is the root View. You can use this inflated layout to find more View objects in the layout, so now capture and define the content for the ImageView and TextView elements. Finally, create a new Toast with Toast(Context) and set some properties of the toast, such as the gravity and duration. Then call setView(View) and pass it the inflated layout. You can now display the toast with your custom layout by calling show(). Note: Do not use the public constructor for a Toast unless you are going to define the layout with setView(View). If you do not have a custom layout to use, you must use makeText(Context, int, int) to create the Toast. |
|||
|
|
|
Toast is very simple to use.You can use this anywhere as
This is simple method.Use it anywhere without any declaration. |
|||
|
|
|
Its simple. Just go through the android developer's site. This is the link : Custom ToastView. |
||||
|
|
|
I think most of customtoast xml-examples through out the internet are based on the same source. the android docs, wich is very outdated in my opinion. fill_parent should not be used anymore. I prefer using wrap_content in combination with a xml.9.png. that way you can define minimum size of toastbackground throughout size of provided source. If more complex toasts are required, frame or relative layout should be used instead of LL. toast.xml
background.xml
background_96 is background_96.9.png. this is not tested very well, hints appreciated :) |
|||
|
|
protected by Community♦ Apr 15 at 0:56
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.
