As we know,the uri's string usually begin with "content://",followed with authorities's name,like "content://com.google.provider.NotePad/Notes"
But if i want create a activity to display a web,I usually code as follows:
Uri uri = Uri.parse("http://google.com");
Intent it = new Intent(Intent.ACTION_VIEW, uri);
The problem is URI's string doesn't begin with "content://" above,so what's the different between them.
Reply will indeed help.
Thanks

