안드로이드 웹뷰-2 정보
안드로이드 웹뷰-2
관련링크
첨부파일
본문
안드로이드 웹뷰-1.
에서
로딩 시간을 줄이는 코드를 삽입했습니다.
AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="net.zeronara.zeronara_app">
<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"
        android:hardwareAccelerated="true">
        <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>

이해를 돕기위해 그림으로 표현했습니다..
13
댓글 12개


감사합니다!!
핸드폰이 좋아져서 그런건가 ..
글쓰기하고 로그인 유지만 어케해보면 네이티브 필요없겠는데요~_~


덕분에 정상적으로 제작 했네요
 
 


