/ Published in: Java
Displays a simple alert using Toast
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
import android.content.Context; import android.widget.Toast; import android.view.Gravity; //New Toast Object with short duration Toast msg = Toast.makeText(context, message, Toast.LENGTH_SHORT); //Setting the gravity to center position msg.setGravity(Gravity.CENTER, msg.getXOffset() / 2, msg.getYOffset() / 2); //Displaying the alert msg.show(); }