Notice
Recent Posts
Recent Comments
Link
이야기앱 세상
Android의 WebView에서 화면 자동 축소 설정하기 본문
Android의 WebView에서 화면 자동 축소 설정하기
WebView webView = (WebView)findViewById(R.id.webView);
데스트탑 화면에 맞게 디자인 화면을 자동으로 축소해서 디바이스의 넓이에 맞게 조정해서 보여주기 위해서는
아래 두개이 메서드를 설정하면 된다.
//true로 지정하면 Wide ViewPort를 사용할 수 있음
webView.getSettings().setUseWideViewPort(true);
//true로 지정하면 HTML 컨텐츠가 WebView보다 클 경우 스크린 크기에 맞게 조정
webView.getSettings().setLoadWithOverviewMode(true);
반응형
'IT > Android' 카테고리의 다른 글
안드로이드 TextView에서 취소선 사용하기 (0) | 2020.07.09 |
---|---|
안드로이드 스튜디오에서 코드 입력시 자동으로 import 구문 추가하기 (0) | 2020.06.16 |
안드로이드 스튜디오에서 소스 코드의 글자 크기 변경하기 (0) | 2020.06.15 |
안드로이드 스튜디오와 Nox(녹스) 플레이어 연동하기 (0) | 2019.07.24 |
All com.android.support libraries must use the exact same version specification (mixing versions can lead to runtime crashes). Found versions 28.0.0, 26.1.0. 오류 해결책 (0) | 2019.06.28 |
Comments