September 22, 2020
// Manifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.webview">
<uses-permission android:name="android.permission.INTERNET" /> 인터넷 접근 권한
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:usesCleartextTraffic="true" // 안드로이드 9.0업데이트 이후, HTTP통신이나 WebView를 할 때 해당 속성을 application 안에 넣어줘야 정상적으로 작동된다.
android:theme="@style/Theme.AppCompat.Light.NoActionBar">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
// MainActivity.kt
class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
// 웹뷰 셋팅
// 자바스크립트 기능 허용
wv_webView.settings.javaScriptEnabled = true
// 아래 두줄이 없다면 새로운 창을 띄워버림
wv_webView.webViewClient = WebViewClient()
wv_webView.webChromeClient = WebChromeClient()
// 웹뷰 연결
wv_webView.loadUrl("https://sangmin802.github.io/haemulhansang/#/")
// Tip!
// mainifests의 thema에서 noactionbar를 통해, 상단 바를 지울 수 있다.
}
override fun onBackPressed() {
if(wv_webView.canGoBack()) { // 웹사이트에서 뒤로갈 페이지가 존재한다면
wv_webView.goBack()
}else{
super.onBackPressed()
}
}
}
// activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<WebView
android:id="@+id/wv_webView"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>