private Toast toast = null;
private void showTextToast(String msg)
{
if(toast == null)
{
toast = Toast.makeText(getApplicationContext(), msg, Toast.LENGTH_SHORT);
}
else
{
toast.setText(msg);
}
toast.show();
}
private Toast toast = null;
private void showTextToast(String msg)
{
if(toast == null)
{
toast = Toast.makeText(getApplicationContext(), msg, Toast.LENGTH_SHORT);
}
else
{
toast.setText(msg);
}
toast.show();
}