sebamed
sebamed

Reputation: 1077

Fill fields in opened browser in Android app

I am looking for an answer on this problem.

Is there a way to fill fields on particular link, but not via webView? Instead of webView I am using device's default browser as shown:

            @Override
            public void onClick(View v) {
                Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.facebook.com"));
                startActivity(browserIntent);
            }

Any examples or solutions would be appreciated! Thanks

Upvotes: 1

Views: 143

Answers (1)

Daniels Šatcs
Daniels Šatcs

Reputation: 554

It is not possible. You can't control the external browser and the code you provided starts an external application.

Upvotes: 1

Related Questions