psp ppsspp para gold for fifa emulador descargar android

ppsspp - Android-Simular Inicio clic



fifa 2018 ppsspp (4)

CASA:

Intent showOptions = new Intent(Intent.ACTION_MAIN); showOptions.addCategory(Intent.CATEGORY_HOME); startActivity(showOptions);

MENÚ:

openOptionsMenu(); // this won''t work from onCreate // if anyone has idea how it would work // please post it as response

Sé que llamar a finish () en actividad producirá el mismo resultado que si el usuario hiciera clic en el botón Atrás; ¿Hay algo similar para el botón de inicio? (Quisiera mostrar automáticamente la pantalla de inicio después de cierta acción).

EDITAR: También, apreciaría lo mismo para los botones de Menú y Buscar.

¡Gracias!


La solución más cercana para simular el clic de inicio que encontré fue:

En el botón de inicio, haga clic en el registro del sistema:

I / ActivityManager: START u0 {act = android.intent.action.MAIN cat = [android.intent.category.HOME] flg = 0x10200000 cmp = com.belauncher / .ui.activities.MainActivity (tiene extras)} desde uid 1000 en la pantalla 0

Simulando la intención:

Intent i = new Intent(Intent.ACTION_MAIN); i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); i.addFlags(Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED); i.addCategory(Intent.CATEGORY_HOME); startActivity(i);


Simplemente puedes usar una Intención para eso:

Intent i = new Intent(Intent.ACTION_MAIN); i.addCategory(Intent.CATEGORY_HOME); startActivity(i);


startActivity(new Intent(Intent.ACTION_MAIN).addCategory(Intent.CATEGORY_HOME));