Je souhaite créer un message de pain grillé dont la couleur d'arrière-plan est en blanc et la couleur du message en noir. Mon message de toast est:
Toast.makeText(Logpage.this, "Please Give Feedback...", 3000).show();
Je voulais le créer dans une autre méthode pas dans onCreate()
.
Vous pouvez créer le message toast personnalisé comme ci-dessous:
Toast toast = new Toast(context);
toast.setDuration(Toast.LENGTH_LONG);
LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View view = inflater.inflate(R.layout.your_custom_layout, null);
toast.setView(view);
toast.show();
Une vue de texte que vous pouvez insérer dans le fichier de mise en page et donner l’arrière-plan et la couleur du texte que vous souhaitez.
Vous pouvez également effectuer les opérations suivantes sans avoir besoin du fichier de présentation personnalisé supplémentaire:
Toast toast = Toast.makeText(context, R.string.string_message_id, Toast.LENGTH_LONG);
View view = toast.getView();
view.setBackgroundResource(R.drawable.custom_backgrround);
TextView text = (TextView) view.findViewById(Android.R.id.message);
/*Here you can do anything with above textview like text.setTextColor(Color.parseColor("#000000"));*/
toast.show();
Modifier les couleurs de pain grillé sans aucune disposition supplémentaire, 2018
C’est un moyen très simple que j’ai trouvé de changer la couleur de l’arrière-plan de l’image du Toast ainsi que la couleur du texte. Cela ne nécessite aucune mise en page supplémentaire ni modification XML:
Toast toast = Toast.makeText(context, message, duration);
View view = toast.getView();
//Gets the actual oval background of the Toast then sets the colour filter
view.getBackground().setColorFilter(YOUR_BACKGROUND_COLOUR, PorterDuff.Mode.SRC_IN);
//Gets the TextView from the Toast so it can be editted
TextView text = view.findViewById(Android.R.id.message);
text.setTextColor(YOUR_TEXT_COLOUR);
toast.show();
Pour modifier la couleur de texte et la couleur d'arrière-plan par défaut Toast
Essayez comme ceci.
Toast toast = Toast.makeText(MainActivity.this, "Please Give Feedback...", Toast.LENGTH_LONG);
View view = toast.getView();
//To change the Background of Toast
view.setBackgroundColor(Color.TRANSPARENT);
TextView text = (TextView) view.findViewById(Android.R.id.message);
//Shadow of the Of the Text Color
text.setShadowLayer(0, 0, 0, Color.TRANSPARENT);
text.setTextColor(Color.BLACK);
text.setTextSize(Integer.valueOf(getResources().getString(R.string.text_size)));
toast.show();
Créez un fichier de mise en page toast.xml indiquant comment votre toast devrait ressembler à ce qui suit:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:Android="http://schemas.Android.com/apk/res/Android"
Android:layout_width="wrap_content"
Android:layout_height="wrap_content"
Android:background="@Android:color/background_dark">
<TextView
Android:layout_width="wrap_content"
Android:layout_height="wrap_content"
Android:text="This is a custom toast."
Android:textColor="@Android:color/white"
Android:layout_gravity="center_vertical" />
</LinearLayout>
Pour afficher le pain grillé dans le fichier Java, entrez le code ci-dessous:
public void showCustomAlert()
{
Context context = getApplicationContext();
// Create layout inflator object to inflate toast.xml file
LayoutInflater inflater = getLayoutInflater();
// Call toast.xml file for toast layout
View toast = inflater.inflate(R.layout.toast, null);
Toast toast = new Toast(context);
// Set layout to toast
toast.setView(toast);
toast.setGravity(Gravity.CENTER_HORIZONTAL | Gravity.CENTER_VERTICAL,
0, 0);
toast.setDuration(Toast.LENGTH_LONG);
toast.show();
}
Vous pouvez personnaliser le toast natif Android en utilisant le code suivant
/**
* ShowToast
*/
public class ShowToast {
public ShowToast(Context context, String info) {
Toast toast = Toast.makeText(context, Html.fromHtml("<font color='#e3f2fd' ><b>" + info + "</b></font>"), Toast.LENGTH_LONG);
toast.setGravity(Gravity.TOP, 0, 0);
toast.show();
}
}
Si vous souhaitez modifier l'arrière-plan, vous devez utiliser une disposition personnalisée dans toast
En ajoutant à la réponse de @ AndroidKiller, vous pouvez également définir gravity
et une TextView
personnalisée, entre autres choses comme ceci:
Toast toast = Toast.makeText(context, context.getResources().getString(resID), Toast.LENGTH_LONG);
LayoutInflater li = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE );
View toastView = li.inflate(R.layout.toast_hint_layout, null);
TextView text = (TextView) toastView.findViewById(R.id.hint_text_tv);
text.setText(resID);
toast.setView(toastView);
toast.setDuration(Toast.LENGTH_SHORT);
toast.setGravity(Gravity.CENTER, 0, 0);
toastView.setBackgroundResource(R.drawable.toast_9_patch);
toast.show();
Notez que l’arrière-plan que vous devez dessiner devrait être un neuf-patch PNG
Vous pouvez même mettre une ImageView
et plusieurs TextView
s avec XML comme ceci:
<LinearLayout Android:id="@+id/layout_root"
xmlns:Android="http://schemas.Android.com/apk/res/Android"
Android:layout_width="wrap_content"
Android:layout_height="wrap_content"
Android:orientation="horizontal">
<ImageView
Android:layout_width="32dp"
Android:layout_height="43dp"
Android:src="@drawable/lightbulb"
/>
<LinearLayout
Android:layout_width="wrap_content"
Android:layout_height="wrap_content"
Android:layout_marginLeft="5dp"
Android:orientation="vertical"
>
<TextView
Android:id="@+id/hint_text_tv"
Android:layout_width="wrap_content"
Android:layout_height="wrap_content"
Android:textColor="#ccc"
Android:textSize="14dp"
/>
<TextView
Android:id="@+id/hint_text_tv"
Android:layout_width="wrap_content"
Android:layout_height="wrap_content"
Android:text="(disable hints in preferences)"
Android:textColor="#555"
Android:textSize="11dp"
/>
</LinearLayout>
</LinearLayout>
static void CustomToast(Context context, String text, int duration,
@Nullable Integer backgroundColor,
@Nullable Integer textColor){
Toast t = Toast.makeText(context,text,duration);
if (backgroundColor != null)
t.getView()
.setBackgroundTintList(ColorStateList.valueOf(backgroundColor));
if (textColor != null)
((TextView)t.getView().findViewById(Android.R.id.message))
.setTextColor(textColor);
t.show();
}