Monday, May 20, 2013

Customizing Toast At Runtime

We can also create customized toast without creating xml layout,  we can add/select the views at run time runtime and can show in the Toast. This gives us more flexibility to select the Toast Components at runtime.




                



                 // create a LinearLayout and Views

                LinearLayout  layout=new LinearLayout(this);
                layout.setBackgroundResource(R.color.LightOrange);
              
                TextView  tv=new TextView(this);
                // set the TextView properties like color, size etc
                tv.setTextColor(Color.RED);
                tv.setTextSize(15);        

                tv.setGravity(Gravity.CENTER_VERTICAL);

                // set the text you want to show in  Toast
                tv.setText("My Custom Toast at Bottom of Screen");  

               ImageView   img=new ImageView(this);

                // give the drawble resource for the ImageView
                img.setImageResource(R.drawable.myimage);


              // add both the Views TextView and ImageView in layout
                layout.addView(img);
                layout.addView(tv);

                Toast toast=new Toast(this); //context is object of Context write "this" if you are an Activity
               // Set The layout as Toast View
                toast.setView(layout);
                     
                  // Position you toast here toast position is 50 dp from bottom you can give any integral value   
                 toast.setGravity(Gravity.BOTTOM, 0, 50);
                 toast.show();




 We can also set/customize  the time interval of the Toast to show. It has been discussed in next post.

 

 


 

Advance Android Topics


                   Customizing Toast In Android 
                   Showing Toast for Longer Time
                   Customizing the Display Time of Toast
                   Using TimePickerDialog and DatePickerDialog In android
                   Animating A Button In Android
                    Populating ListView With DataBase

                    Customizing Checkboxes In Android 
                    Increasin Size of Checkboxes
                    Android ProgressBar
                    Designing For Different Screen Sizes
                    Handling Keyboard Events

More Android Topics:



  

Android : Introduction


       Eclipse Setup for Android Development

                     Configuring Eclipse for Android Development

          Begging With Android

                     Creating Your First Android Project
                     Understanding Android Manifest File of your android app


         Working With Layouts

                      Understanding Layouts in Android
                          Working with Linear Layout (With Example)
                                Nested Linear Layout (With Example)
                          Table Layout
                          Frame Layout(With Example)
                         Absolute Layout
                         Grid Layout


       Activity

                     Activity In Android
                     Activity Life Cycle
                     Starting Activity For Result
                     Sending Data from One Activity to Other in Android
                     Returning Result from Activity

     Working With Views

                     Using Buttons and EditText in Android 
                     Using CheckBoxes in Android 
                     Using AutoCompleteTextView in Android
                     Grid View

       Toast

                     Customizing Toast In Android
                     Customizing the Display Time of Toast
                     Customizing Toast At Runtime
                     Adding Image in Toast
                     Showing Toast for Longer Time

     Dialogs In Android

                     Working With Alert Dialog
                     Adding Radio Buttons In Dialog
                     Adding Check Boxes In Dialog
                     Creating Customized Dialogs in Android
                    Adding EditText in Dialog

                   Creating Dialog To Collect User Input

                 DatePicker and TimePickerDialog

                              Using TimePickerDialog and DatePickerDialog In android

    Working With SMS

                  How to Send SMS in Android
                  How To Receive SMS
                  Accessing Inbox In Android

    ListView:

               Populating ListView With DataBase

      Menus In Android

                    Creating Option Menu
                    Creating Context Menu In Android

      TelephonyManager

                    Using Telephony Manager In Android

     Working With Incoming Calls

                    How To Handle Incoming Calls in Android
                    How to Forward an Incoming Call In Android
                   CALL States In Android
 

    Miscellaneous

                   Notifications In Android
                   How To Vibrate The Android Phone
                   Sending Email In Android
                  Opening a webpage In Browser
                   How to Access PhoneBook In Android
                   Prompt User Input with an AlertDialog

   Storage:  Storing Data In Android


               Shared Prefferences  In Android

                             SharedPreferences In Android

               Files: File Handling In Android

                              Reading and Writing files to Internal Stoarage
                              Reading and Writing files to SD Card 
                           

                DataBase : Working With Database

                             Working With Database in Android
                             Creating Table In Android
                             Inserting, Deleting and Updating Records In Table in Android
                             How to Create DataBase in Android
                             Accessing Inbox In Android

     Animation In Android:

                  Animating A Button In Android





No comments:

Post a Comment