Custom Toast in Android
How to Create Custom Toast in Android .
1). activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.packagename.customtoast.MainActivity">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="WelCome"
android:textSize="60sp"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="41dp"
android:id="@+id/textView" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Show Custom Toast"
android:id="@+id/customToastButton"
android:layout_below="@+id/textView"
android:layout_centerHorizontal="true" />
</RelativeLayout>
2). Create a custom layout for Toast in layout folder.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal" android:layout_width="match_parent"
android:layout_height="120dp"
android:id="@+id/toastLayout"
android:background="@color/colorAccent"
>
<ImageView
android:layout_width="100dp"
android:layout_height="100dp"
android:src="@drawable/logo"
android:id="@+id/toastImage"
/>
<TextView
android:id="@+id/toastText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="20dp"
android:text="Android and Java Logics"
android:layout_marginTop="20dp"
android:textSize="20sp"
android:textColor="#ffffff"
/>
</LinearLayout>
WATCH VIDEO TUTORIAL FOR MORE UNDERSTANDING
3. MainActivity.java file
public class MainActivity extends AppCompatActivity {
Button ShowCustomToastButton;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
ShowCustomToastButton= (Button) findViewById(R.id.customToastButton);
ShowCustomToastButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
getCustomToast();
}
});
}
// inflate the Toast layout file
public void getCustomToast()
{
LayoutInflater inflater=getLayoutInflater();
View view =inflater.inflate(R.layout.custom_toast , (ViewGroup) findViewById(R.id.toastLayout));
ImageView imageView= (ImageView) view.findViewById(R.id.toastImage);
TextView textView = (TextView) view.findViewById(R.id.toastText);
Toast toast = new Toast(getApplicationContext());
toast.setDuration(Toast.LENGTH_LONG);
toast.setView(view);
toast.setGravity(Gravity.CENTER_VERTICAL , 0 ,0);
toast.show();
}
}
Comments
Post a Comment