Android访问百度网站

编程入门 行业动态 更新时间:2024-10-06 06:43:28

Android访问百度<a href=https://www.elefans.com/category/jswz/34/1771113.html style=网站"/>

Android访问百度网站

效果图

逻辑代码--MainActivity

package com.example.week4_day3_web;import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.webkit.WebView;public class MainActivity extends Activity {private WebView web;@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);web=(WebView) findViewById(R.id.web);web.loadUrl("/");}@Overridepublic boolean onCreateOptionsMenu(Menu menu) {// Inflate the menu; this adds items to the action bar if it is present.getMenuInflater().inflate(R.menu.main, menu);return true;}}
布局文件

<RelativeLayout xmlns:android=""xmlns:tools=""android:layout_width="match_parent"android:layout_height="match_parent"android:paddingBottom="@dimen/activity_vertical_margin"android:paddingLeft="@dimen/activity_horizontal_margin"android:paddingRight="@dimen/activity_horizontal_margin"android:paddingTop="@dimen/activity_vertical_margin"tools:context=".MainActivity" ><WebViewandroid:id="@+id/web"android:layout_width="wrap_content"android:layout_height="wrap_content"/></RelativeLayout>
配置文件--添加网络权限

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android=""package="com.example.week4_day3_web"android:versionCode="1"android:versionName="1.0" ><uses-sdkandroid:minSdkVersion="8"android:targetSdkVersion="18" /><uses-permission android:name="android.permission.INTERNET"/><applicationandroid:allowBackup="true"android:icon="@drawable/ic_launcher"android:label="@string/app_name"android:theme="@style/AppTheme" ><activityandroid:name="com.example.week4_day3_web.MainActivity"android:label="@string/app_name" ><intent-filter><action android:name="android.intent.action.MAIN" /><category android:name="android.intent.category.LAUNCHER" /></intent-filter></activity></application></manifest>



更多推荐

Android访问百度网站

本文发布于:2024-02-27 18:35:19,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1765729.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:网站   Android

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!