in Education by
I have a custom toast notification which has an image and text. The custom toast works fine however I am wondering how do I make my custom toast inherit the default toasts look and feel? I want it to look like the default one with the nice rounded corners and borders. This is what my custom toast looks like. <?xml version="1.0" encoding="utf-8"?> JavaScript questions and answers, JavaScript questions pdf, JavaScript question bank, JavaScript questions and answers pdf, mcq on JavaScript pdf, JavaScript questions and solutions, JavaScript mcq Test , Interview JavaScript questions, JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)

1 Answer

0 votes
by
I use this in one of my apps. Change a few things around and it should work for you too. Toast ImageToast = new Toast(getBaseContext()); LinearLayout toastLayout = new LinearLayout( getBaseContext()); toastLayout.setOrientation(LinearLayout.HORIZONTAL); ImageView image = new ImageView(getBaseContext()); image.setImageResource(R.drawable.easter_egg); toastLayout.addView(image); ImageToast.setView(toastLayout); ImageToast.setDuration(Toast.LENGTH_SHORT); ImageToast.show();

Related questions

0 votes
    In my layout I am trying to get the CirclePageIndicator to sit at the bottom of my image and for ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jun 23, 2022 in Education by JackTerrance
0 votes
    I am newbie to android development and learning it to my own. I have a very strange problem of ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jun 18, 2022 in Education by JackTerrance
0 votes
    I am newbie to android development and learning it to my own. I have a very strange problem of ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jun 14, 2022 in Education by JackTerrance
0 votes
    I've created a searchable activity as described here: http://developer.android.com/guide/topics/search/ ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 28, 2022 in Education by JackTerrance
0 votes
    I am developing an application where in 1 part I want to add javascript into WebView.. But am not getting ... ; wb.getSettings().setPluginsEnabled(true); wb.loadUrl("javascript:...
asked Feb 19, 2022 in Education by JackTerrance
0 votes
    In my app the user manipulates a image, rotates, pinch, zoom etc. This is make within onDraw() ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 18, 2022 in Education by JackTerrance
0 votes
    I'm not sure how exactly to phrase my question. So, I have an interface reference and I'm ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 20, 2022 in Education by JackTerrance
0 votes
    Which of this keyword must be used to inherit a class? (a) super (b) this (c) extent (d) ... java programming questions and answers pdf, java interview questions for beginners...
asked Oct 25, 2021 in Education by JackTerrance
0 votes
0 votes
    If we need to inherit from a base class and want to pass something from the constructor of the inherited class to the constructor of the base class, how can we do that?...
asked Jan 16, 2021 in Technology by JackTerrance
0 votes
    Default Environment Variables by Jenkins & How to introduce custom environment variables?...
asked Sep 14, 2021 in Technology by JackTerrance
0 votes
    What are default Environment Variables by Jenkins & How to introduce custom environment variables?...
asked Jul 17, 2021 in Technology by JackTerrance
0 votes
    Delete the branch starfeature in GitHub. Which channel would receive notification for this event? A. Stakeholders and ... . Stakeholders C. Starprojectteam D. None of the options...
asked Dec 23, 2022 in Technology by JackTerrance
0 votes
    Delete the branch starfeature in GitHub. Which channel would receive notification for this event? A. Stakeholders and ... . Stakeholders C. Starprojectteam D. None of the options...
asked Dec 16, 2022 in Education by JackTerrance
0 votes
    When a certain event occurs, I want my website to play a short notification sound to the user. The ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jul 26, 2022 in Education by JackTerrance
...