Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 자바
- IOS
- 안드로이드 스튜디오
- 개발강의
- android example
- 안드로이드 서비스
- Android Studio
- 홍드로이드 강의
- 안드로이드
- 안드로이드 예제
- Android Java
- flutter
- 코틀린
- hongdroid
- 홍드로이드
- 앱 만들기
- android tutorial
- Android
- java
- 코딩
- 안드로이드 기초
- 플러터
- 자바 튜토리얼
- 안드로이드 코딩 기초
- 앱 만드는 법
- 안드로이드 네비게이션 메뉴
- 안드로이드 앱 만들기
- 안드로이드 튜토리얼
- 개발자
- android studio 앱 만드는 법
Archives
- Today
- Total
홍드로이드의 야매코딩
#9 안드로이드 스튜디오 웹뷰 (WebView) 예제 [ 홍드로이드 ] 본문
[AndroidManifest.xml]
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.webviewexample"> <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:theme="@style/AppTheme"> <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> | cs |
[activity_main.xml]
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | <?xml version="1.0" encoding="utf-8"?> <LinearLayout 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/webView" android:layout_width="match_parent" android:layout_height="match_parent"/> </LinearLayout> | cs |
[MainActivity.java]
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | package com.example.webviewexample; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.KeyEvent; import android.webkit.WebChromeClient; import android.webkit.WebView; import android.webkit.WebViewClient; public class MainActivity extends AppCompatActivity { private WebView webView; private String url = "https://www.naver.com"; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); webView = (WebView) findViewById(R.id.webView); webView.getSettings().setJavaScriptEnabled(true); webView.loadUrl(url); webView.setWebChromeClient(new WebChromeClient()); webView.setWebViewClient(new WebViewClientClass()); } @Override public boolean onKeyDown(int keyCode, KeyEvent event) { if ((keyCode == KeyEvent.KEYCODE_BACK) && webView.canGoBack()) { webView.goBack(); return true; } return super.onKeyDown(keyCode, event); } private class WebViewClientClass extends WebViewClient { @Override public boolean shouldOverrideUrlLoading(WebView view, String url) { view.loadUrl(url); return true; } } } | cs |
'Android Java' 카테고리의 다른 글
#11 안드로이드 스튜디오 카메라 (Camera) 예제 [ 홍드로이드 ] (12) | 2019.05.21 |
---|---|
#10 안드로이드 스튜디오 네비게이션 메뉴 (Navigation Menu Custom) 예제 [ 홍드로이드 ] (2) | 2019.05.21 |
#8 안드로이드 스튜디오 데이터 저장 ( Shared Preferences ) 예제 [ 홍드로이드 ] (0) | 2019.05.21 |
#7 안드로이드 스튜디오 네비게이션 메뉴 ( Navigation Menu ) 예제 [ 홍드로이드 ] (0) | 2019.05.21 |
#6 안드로이드 스튜디오 리스트뷰 (ListView) 예제 [ 홍드로이드 ] (0) | 2019.05.21 |
Comments