我看过很多手机应用只是在没有控件的情况下打开网页。只是页面。
我正在寻找指导和链接来开始这样简单的事情。
答案 0 :(得分:16)
如果您想在Android中打包网站,可以使用此代码从Roskvist
开始package com.webview;
import android.app.Activity;
import android.os.Bundle;
import android.view.Window;
import android.webkit.WebView;
public class WebViewTest extends Activity {
WebView browserView;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//Removes the title bar in the application
requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.main);
//Creation of the Webview found in the XML Layout file
browserView = (WebView)findViewById(R.id.webkit);
//Enable Javascripts
browserView.getSettings().setJavaScriptEnabled(true);
//Removes both vertical and horizontal scroll bars
browserView.setVerticalScrollBarEnabled(false);
browserView.setHorizontalScrollBarEnabled(false);
//The website which is wrapped to the webview
browserView.loadUrl("http://dev.openlayers.org/sandbox/camptocamp
/mobile/trunk/examples/iol-iui.html?rev=9962#_map");
}
}
这里是main.xml内容
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<WebView
android:id = "@+id/webkit"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>
</RelativeLayout>
然后您必须通过USB编译并将其加载到您的设备。
答案 1 :(得分:6)
如果我了解您要求的内容,则在Windows Phone 7上无法获得Microsoft Marketplace中批准的此类应用程序。 Application Certification Requirements for Windows Phone的第2.10节说“您的应用程序必须具有独特,实质和合法的内容和目的。您的应用程序必须提供除启动网页之外的功能。”
我的一位同事最近有一个类似的风格申请被Apple拒绝了。
我认为在这两个平台上,您可能已经能够在过去接受这些类型的应用程序,但不再是。
答案 2 :(得分:2)
对于iOS / iPhone,您可以将Web应用程序或网页封装在应用程序包中,并在全高UIWebView中显示该网站。要添加非HTML5功能(Apple可能需要批准应用程序进行App Store分发),您可以通过shouldStartLoadWithRequest:delegate方法捕获自定义URL,并使用本机Object C代码处理它们。
答案 3 :(得分:1)
关于常规Webapps与混合应用程序(网络但专为移动设备设计)与移动应用程序(客户端软件)相比,有很多一般信息。您可能正在寻找的只是典型的HTML5或移动兼容的Web代码。
对于android,这是一个很好的阅读:http://developer.android.com/guide/webapps/index.html
答案 4 :(得分:1)
对于Android,您需要使用WebView
。