1

我想制作一个链接到 google.com 等网站的按钮。我使用 jquery mobile + eclipse 并尝试使用这个谷歌,它在 android 虚拟设备中运行良好,但是当我将应用程序(apk 文件)传输到我的手机时,它不能那样工作。它只是向我显示没有我想要的按钮的链接。为什么呢?我应该在 java 或 xml 或 androidfest.xml 文件上添加什么代码?请帮忙!!

此外,我通过蓝牙而不是使用电缆传输了我的最终 apk 文件。这可能是问题吗?:/

我的 MainActivity.java 代码:

package com.example.testing;

import android.app.Activity;
import android.os.Bundle;
import android.view.Window;
import android.webkit.WebSettings;
import android.webkit.WebView;
import android.webkit.WebViewClient;

public class MainActivity extends Activity {

    @Override
    public void onCreate(Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);
        this.requestWindowFeature(Window.FEATURE_NO_TITLE);
        setContentView(R.layout.activity_main);

        WebView webView = (WebView) findViewById(R.id.webview);
        WebSettings webSettings = webView.getSettings();
        webSettings.setJavaScriptEnabled(true);
        webView.setWebViewClient(new WebViewClient());
        webView.loadUrl("file:///android_asset/index.html");

        return;
    }

}

我的activity_main.xml:

<WebView xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/webview"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:scrollbars="none" />

AndroidManifest.xml:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.testing"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="15" />

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

    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name=".MainActivity"
            android:label="@string/title_activity_main" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

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

</manifest>

注意:我的页眉和页脚也没有像在我的真实手机中那样显示。我也需要这方面的帮助:页眉、页脚和按钮功能。

html文件:

<!DOCTYPE html>
<html>

<head>
    <title>Home Page</title>
    <link rel="stylesheet" href="http://code.jquery.com/mobile/1.0a1/jquery.mobile-1.0a1.min.css" />
    <script src="http://code.jquery.com/jquery-1.4.3.min.js"></script>
    <script src="http://code.jquery.com/mobile/1.0a1/jquery.mobile-1.0a1.min.js"></script>

    <link rel="stylesheet" type="text/css" href="css/event.css" />
</head>
<body>

<div data-role="page" data-theme="c" id="home">
    <div data-role="header">
        <h1>Hello</h1>
    </div>

    <div data-role="content">
        <p>
        <a href="https://www.google.com.sg/" rel="external" data-role="button">Google</a>
    <a href="http://www.channelnewsasia.com/" rel="external" data-role="button">CNA</a>
        </p>
    </div>

    <div data-role="footer">
    <h4>Bye</h4>
    </div>

</div>

</body>
</html>
4

0 回答 0