Passing Headers while using Browser Intent
问题 I want to pass some headers while opening a web page. Right now, I'm doing something like : browserIntent = new Intent(Intent.ACTION_VIEW,Uri.parse(data.link)); startActivity(browserIntent ); Now I'm stuck as I dont know how to pass headers using browserIntent. I've tried using browserIntent.putExtra() but it doesn't work. Can anyone please help.!! 回答1: This was my biggest question in the last 2days, too! And I found it!!! I have a Map object that I stored header information. Then the