In my application I am launching a new Intent
with url (browser) using the following code:
Intent myIntent = new Intent(Intent.ACTION_VIEW,Uri.parse(url));
try {
context.startActivity(myIntent);
} catch (ActivityNotFoundException e) {
Log.e(TAG, "cannot initiate Browser", e);
}
Is there a way tolet the new activity to send user agent
thanks -Z