Reputation: 1077
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
Reputation: 554
It is not possible. You can't control the external browser and the code you provided starts an external application.
Upvotes: 1