JunJao.Com ตอบคำถาม คอมพิวเตอร์ อินเตอร์เน็ต การเขียนโปรแกรม Forex MT4 MT5

คอมพิวเตอร์ อินเตอร์เน็ต => การเขียนโปรแกรม Mobile App , Web App => ข้อความที่เริ่มโดย: junjao ที่ พฤษภาคม 29, 2019, 11:03:23 PM

หัวข้อ: webview kotlin code android studio 3 ไฟล์
เริ่มหัวข้อโดย: junjao ที่ พฤษภาคม 29, 2019, 11:03:23 PM
webview kotlin code android studio 3 ไฟล์

activity_main.xml
----------------------------------------------------------
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        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"
    />

</android.support.constraint.ConstraintLayout>
-------------------------------------------------------------

MainActivity.kt
------------------------
package com.junjao.webview3

import android.support.v7.app.AppCompatActivity
import android.os.Bundle
import android.webkit.WebView

class MainActivity : AppCompatActivity() {

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main)

        val myWebView: WebView = findViewById(R.id.webview)
        myWebView.loadUrl("https://www.xxxxxxx")
    }
}
----------------------------------------------------

AndroidManifest.xml
-----------
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
          package="com.junjao.webview3">

    <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>
-------------------------------------

อ้างอิง https://developer.android.com/guide/webapps/webview kotlin

รับทำ app webview kotlin ขึ้น google play ราคา 5,000 บาท
สรพล
jun_jao2000@hotmail.com
line @junjao
x [close]
x [close]