webview 그냥 띄우고 링크 타고 들어갔을때 내장 브라우저가 나와서 그때부턴 주소창이 나오는데
아예 처음부터 내장 브라우저 띄우는 방법은 없나요?
Intent 사용해서 띄우시면 됩니다.
Uri uri = Uri.parse(url);
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
context.startActivity(intent);
Intent 는 기본적으로 익혀두시는 것이 편합니다.
로그인 유지
Intent 사용해서 띄우시면 됩니다.
Uri uri = Uri.parse(url);
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
context.startActivity(intent);
Intent 는 기본적으로 익혀두시는 것이 편합니다.