toast with TextView : TextView « UI « Android






toast with TextView

    

import android.content.Context;
import android.graphics.Color;
import android.graphics.Typeface;
import android.view.Gravity;
import android.widget.TextView;
import android.widget.Toast;

 class ToastForAPP
{
    public static void toastNow(String message,Context context)
    {
        Toast toast = Toast.makeText(context,message, Toast.LENGTH_LONG);
        toast.setGravity(Gravity.CENTER, toast.getXOffset() / 2, toast.getYOffset() / 2);

        TextView textView = new TextView(context);
        textView.setBackgroundColor(Color.DKGRAY);
        textView.setTextColor(Color.WHITE);
        textView.setTextSize(30);
        Typeface typeface = Typeface.create("serif", Typeface.BOLD);
        textView.setTypeface(typeface);
        textView.setPadding(10, 10, 10, 10);
        textView.setText(message);

        toast.setView(textView);
        toast.show();
    }
}

   
    
    
    
  








Related examples in the same category

1.Add TextView to LinearLayout
2.Using ScrollView to hold a TextView
3.Set text for TextView in xml file
4.Set text for TextView
5.Add TextView and set text
6.Set size for TextView
7.Using AutoCompleteTextView
8.Set size for AutoCompleteTextView
9.Fill data to AutoCompleteTextView with ArrayAdapter
10.Create TextView within code
11.Set text Size, color, padding and background for TextView
12.extends TextView to create customized widget
13.RelativeLayout TextView and EditView
14.Using MultiAutoCompleteTextView
15.This is a TextView that is Editable and by default scrollable like EditText without a cursor.
16.AutoCompleteTextView 2
17.AutoCompleteTextView 3
18.Two AutoCompleteTextView
19.MultiAutoCompleteTextView Demo
20.Demonstrates using a LinearLayout background to group related TextViews, EditTexts, and Buttons.
21.Create TextView
22.Append and set text to TextView
23.Format number
24.Auto complete Text view
25.Programmatically load text from an asset and place it into the text view.
26.extends ScrollingMovementMethod