No puedo ver el mensaje de brindis en Android 4.1 móvil. Hasta ayer pude ver el mensaje de pan tostado. Desde hoy solo no puedo ver el mensaje. Por favor, ayúdame.Por qué el mensaje de brindis no se muestra en el sistema operativo Android 4.1 que contiene el móvil
Toast.makeText(getApplicationContext(), "hi", Toast.LENGTH_SHORT).show();
He intentado personalizar el mensaje de brindis también en lugar del mensaje de brindis. Pero aún no funciona.
tostadas personalizado:
LayoutInflater inflater=getLayoutInflater();
View layout = inflater.inflate(R.layout.toast_layout,(ViewGroup) findViewById(R.id.toast_layout_root));
TextView text = (TextView) layout.findViewById(R.id.text);
text.setText("Please fill Name");
Toast toast = new Toast(getApplicationContext());
toast.setGravity(Gravity.CENTER_VERTICAL, 0, 0);
toast.setDuration(Toast.LENGTH_LONG);
toast.setView(layout);
toast.show();
Comparta su código o registre los rastros. – fiddler
si (first_name.length() <1 || nombre apellido == null) \t \t \t { \t \t \t \t Toast.makeText (getApplicationContext() "Rellene Nombre", Toast.LENGTH_SHORT) .show(); \t \t \t \t Utilidades.writeIntoLog ("Por favor complete el nombre"); \t \t \t \t} – AndroidRaji
Acabo de probar esto en un dispositivo 4.1 y funcionó .. ¿Estás seguro de que tu cadena 'first_name' está realmente vacía? – fiddler