浏览 7968 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (12) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2009-11-20
最后修改:2009-11-20
Hello, WebViewA
学习地址:http://androidappdocs.appspot.com/guide/tutorials/views/hello-webview.html
HelloWebView.java 代码
package com.example.test; import android.app.Activity; import android.os.Bundle; import android.webkit.WebView; public class HelloWebView extends Activity { WebView webview; /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); webview = (WebView) findViewById(R.id.webview); webview.getSettings().setJavaScriptEnabled(true); webview.loadUrl(http://ditu.google.cn); } }
Layout->main.xml <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="vertical"> <WebView android:id="@+id/webview" android:layout_width="fill_parent" android:layout_height="fill_parent" /> </LinearLayout>
执行 Eclipse->HelloWebViewAndroid->Android Application 显示图片如下:
声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |
发表时间:2009-11-24
谁评的新手贴啊?虽然我不玩Android,但是Android还在起步阶段吧,资料应该是比较少的,发发这种帖子我觉得没什么不好啊
|
|
返回顶楼 | |
发表时间:2009-11-27
public class HelloWebView extends Activity { WebView webview; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); webview = (WebView) findViewById(R.id.webview); webview.getSettings().setJavaScriptEnabled(true); webview.loadData(" <html> <body> sssssssssss</body> </html> ", "text/html", "utf-8"); } } 为什么这样写显示不出来 |
|
返回顶楼 | |
发表时间:2009-12-03
feisuzhu 写道 谁评的新手贴啊?虽然我不玩Android,但是Android还在起步阶段吧,资料应该是比较少的,发发这种帖子我觉得没什么不好啊
这样的帖子,网上S一下,一大堆... |
|
返回顶楼 | |