Estoy tratando de hacer un brindis en secuencia para mostrar una fuente rss ruuning. Estoy recibiendo el siguiente error cuando se ejecuta: java.lang.RuntimeException: Este pan tostado no fue creado con Toast.makeText()error al mostrar tostadas
Mi código es:
LayoutInflater inflater = getLayoutInflater();
View layout = inflater.inflate(R.layout.toast_layout,
(ViewGroup) findViewById(R.id.toast_layout_root));
ImageView image = (ImageView) layout.findViewById(R.id.toastimage);
image.setImageResource(R.drawable.bball_icon);
TextView text = (TextView) layout.findViewById(R.id.toasttext);
Toast toast = new Toast(getApplicationContext());
toast.setView(layout);
for (int i=0;i<episode_titles.size();i++)
{
toast.setText(episode_titles.get(i).toString());
toast.setGravity(Gravity.CENTER_VERTICAL, 0, 0);
toast.setDuration(Toast.LENGTH_SHORT);
toast.show();
}
¿Se puede publicar el logcat de su error? – caiocpricci2
02-28 11: 11: 10.421: E/AndroidRuntime (9715): java.lang.RuntimeException: Esta tostada no se creó con Toast.makeText() – user1163234
En realidad, necesitamos el logcat que se refiere al error real, usted mencionó ejecutar : java.lang.RuntimeException! – caiocpricci2