반응형
안드로이드 스튜디오 웹뷰 전체 화면 만들기
파일 : style.xml
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="android:windowFullscreen">true</item>
</style>
</resources>
빨강색 부분 추가하기
위와 같이 추가하면 상태바와 타이틀 바가 없어집니다.
파일 : activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:padding="0dp"
android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".MainActivity">
<WebView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/webView"
android:layout_alignParentTop="true" />
</RelativeLayout>
위와 같이 추가하면 양쪽 여백이 없어지게 됩니다.
반응형
'IT > 안드로이드' 카테고리의 다른 글
안드로이드 스튜디오 어플 버전 표시 (0) | 2016.12.08 |
---|---|
안드로이드 스튜디오 웹뷰 자바스크립트 허용 (0) | 2016.12.08 |
안드로이드 스튜디오 웹뷰 새창 막기 (0) | 2016.12.08 |
안드로이드 스튜디오 아이콘명 바꾸기 (0) | 2016.12.07 |
webview youtube 백그라운드 재생 정책위반 해결 (0) | 2015.10.24 |