Skip to main content

Implement Custom Toast In Your App Using Sketchware

Implement Custom Toast In Your App Using Sketchware




In this tutorial I will show you how to implement custom toast.Its very easy and simple.
Follow the steps ....



1)Create a  new project in Sketchware. Add a Button

Screenshot is given Below


            



2)Add a New Custom View.In the custom view add a Linear Layout. Inside the LinearLayout add a Textview.

Screenshot is Given Below


                                    



                                    


3) Now go to the logic area. You will see two events.
onCreate & Button:button1 onClick.


                                    



Click on Button:button1 onClick . In this event add an add source directly block.

Add the following code inside add source directly block


                                          




View layoutValue = LayoutInflater.from(MainActivity.this).inflate(R.layout.custom, null);
TextView textview1 = (TextView) layoutValue.findViewById(R.id.textview1);

textview1.setText("Hello Everyone ");

     
                Toast toast = new Toast(getApplicationContext());
                toast.setDuration(Toast.LENGTH_SHORT);
                toast.setGravity(Gravity.CENTER_VERTICAL, 0, 0);
                toast.setView(layoutValue);
 toast.show();



Below are some screenshots .You can Refer them.
                          


4) Now Run the app.The app will display a custom toast on button click.





I hope this tutorial was helpful to you.If you have any doubts you can comment below.

Video tutorial is available on Youtube! 
Link  

Comments

Post a Comment

Did you like this tutorial ?

Popular posts from this blog

Create Custom Popup Window using Sketchware

Create Custom Popup Window using Sketchware Refer the video below if  you get stuck.  1) Add a custom view named window.You can name it according to your wish.  2)Design your popup window.  2) Now, In the logic section,In OnCLick event of button.Add the following  code Create a view View popupView = getLayoutInflater().inflate(R.layout.window, null); Popup window  final PopupWindow popup = new PopupWindow(popupView, ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT, true); Initialize  Button b1 = popupView.findViewById(R.id.button1); Button b2 = popupView.findViewById(R.id.button2); OnClickListeners b1.setOnClickListener(new OnClickListener() { public void onClick(View view) { //below code will dismiss the popup window popup.dismiss(); } }); b2.setOnClickListener(new OnClickListener() { public void onClick(View view) { popup.dismiss(); } }); Show the...

Add Edittext Inside Dialog Box

Add Edittext Inside Dialog Box If you haven`t yet watched the video... Watch  it right  now!!! The code used in the above video is available here. final EditText edittext1= new EditText(MainActivity.this); LinearLayout.LayoutParams lpar = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT, LinearLayout.LayoutParams.WRAP_CONTENT); edittext1.setLayoutParams(lpar); dialog.setView(edittext1); textview1.setText(edittext1.getText());

Add Checkbox Inside Dialog Box | Sketchware tutorial

Add Checkbox Inside Dialog Box  If you haven`t yet watched the video, Watch it Now...! Open your Sketchware project.Add Dialog Box component. Go to the logic section & add the blocks which are necessary to create a dialog box. A screenshot is given below for your reference.                                    Now you have to make some modifications.In order to add checkbox you have to use add source directly block.Add the following code inside it.Screenshot is given below for your reference final CheckBox cb1 = new CheckBox(MainActivity.this); cb1.setText("CheckBox"); LinearLayout.LayoutParams lpar = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT, LinearLayout.LayoutParams.WRAP_CONTENT); cb1.setLayoutParams(lpar); dialog.setView(cb1); Inside the block " dialog OK Button Clicked ", add the following code using add...