public void onClick(DialogInterface dialog, int which) {
      Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("www.naver.com"));
      startActivity(intent);
                 }

이런식으로 tab1에서 LISTVIEW속의 탭을 클릭 하였을때, 웹뷰를 보여주게 하려고 하는데요.
아래 그림같은 오류 메세지를 보여줍니다.
INTENT가 제대로 생성되지 않은것 같은데, AndroidManifest.xml
여기도 손을 봐야 하는건가요?

조언좀 해주세오ㅛ.. ㅠㅠ