• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

Web控件

武飞扬头像
幸运的千石X
帮助1

Android开发之Web控件介绍(小白)

效果图:Test01,简单加载网站
学新通
效果图:Test02,自己利用html语句编写
学新通

学新通
需要修改两个地方,如下:
学新通

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

    <uses-permission android:name="android.permission.INTERNET" />

    <application
    	android:usesCleartextTraffic="true"
        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/Theme.Newworld">
        <activity
            android:name=".web.WebActivity"
            android:exported="true" />

        <provider
            android:name=".YourContentProvider"
            android:authorities="cn.com.you"
            android:enabled="true"
            android:exported="true" >
        </provider>

        <activity
            android:name=".MainActivity2"
            android:exported="true" />
        <activity
            android:name=".MainActivity"
            android:exported="true" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

学新通

package com.example.newworld.web;

import android.webkit.WebView;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import com.example.newworld.R;

public class WebActivity extends AppCompatActivity {

    public WebView showweb;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_web);
        init();

        /**
         * Test01:加载http://www.4399.com/页面(其实是经过浏览器解析后的xml
         */
        //showweb.loadUrl("http://www.4399.com/");

        /**
         * Test02:自创页面
         */
        StringBuilder stringBuilder = new StringBuilder();
        stringBuilder.append("<div>学习课程</div>");
        stringBuilder.append("<ul>");
        stringBuilder.append("<li>学习课程</li>");
        stringBuilder.append("<li>学习课程2</li>");
        stringBuilder.append("<li>学习课程3</li>");
        stringBuilder.append("</ul>");
        showweb.loadDataWithBaseURL(null,stringBuilder.toString(),"text/html","utf-8",null);

    }

    /**
     * 初始化模块
     */
    public void init(){
        showweb = findViewById(R.id.showweb);
    }
}

学新通

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
        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=".web.WebActivity">
    <WebView
            android:id="@ id/showweb"
            android:layout_width="match_parent"
            android:layout_height="match_parent">

    </WebView>

</RelativeLayout>

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /boutique/detail/tanhgfacci
系列文章
更多 icon
同类精品
更多 icon
继续加载