Pesquisar no site de suporte

Evite golpes de suporte. Nunca pedimos que você ligue ou envie uma mensagem de texto para um número de telefone, ou compartilhe informações pessoais. Denuncie atividades suspeitas usando a opção “Denunciar abuso”.

Learn More

Directly start firefox on buttonclick event with URL passed to it

  • Nenhuma resposta
  • 10 têm este problema
  • 16 visualizações
more options

I have an URL to be opened directly (will check if installed or not) in Firefox android browser only, for the button click event.....But my code opens dialog to choose browser(URL is passed)

               if(isAppInstalled) {
                   Uri uri = Uri.parse("http://localhost/rtc.html"); 
                   Intent intent = new Intent(Intent.ACTION_VIEW, uri);
                   startActivity(intent);
OR just opens firefox (if installed) but URL is not passed to it
 Intent intent1=getPackageManager().getLaunchIntentForPackage("com.mozilla.firefox");
                   startActivity(intent1);

So how do I open firefox directly with URL passed to it.

I have an URL to be opened directly (will check if installed or not) in Firefox android browser only, for the button click event.....But my code opens dialog to choose browser(URL is passed) if(isAppInstalled) { Uri uri = Uri.parse("http://localhost/rtc.html"); Intent intent = new Intent(Intent.ACTION_VIEW, uri); startActivity(intent); OR just opens firefox (if installed) but URL is not passed to it Intent intent1=getPackageManager().getLaunchIntentForPackage("com.mozilla.firefox"); startActivity(intent1); So how do I open firefox directly with URL passed to it.