-2

正如我在标题中所说

Activity_main.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity" >

    <WebView
        android:id="@+id/webView"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true" />

</RelativeLayout>

AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.achkars.espaceado"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="17" />
<uses-permission android:name="android.permission.INTERNET" />
    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.achkars.espaceado.MainActivity"
            android:label="@string/app_name"
            android:theme="@style/Theme.FullScreen"
            android:noHistory="true"
            android:screenOrientation="portrait" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

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

</manifest>

MainActivity.java

package com.achkars.espaceado;

import android.os.Bundle;
import android.annotation.SuppressLint;
import android.app.Activity;
import android.view.Menu;
import android.webkit.WebChromeClient;
import android.webkit.WebView;

public class MainActivity extends Activity {

    @SuppressLint("SetJavaScriptEnabled")
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        WebView webview = new WebView(this);
         setContentView(webview);
         webview.getSettings().setJavaScriptEnabled(true);
         webview.setWebChromeClient(new WebChromeClient());
        // Simplest usage: note that an exception will NOT be thrown
         // if there is an error loading this page (see below).
         webview.loadUrl("file:///android_asset/index.html");
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.activity_main, menu);
        return true;
    }

}

和文件 News.php

<html>
<head>
<link rel="stylesheet" type="text/css" href="file:///android_asset/style.css" media="screen"/>
</head>
<body>
<img alt="full screen background image" src="file:///android_asset/back.jpg" id="full-screen-background-image" />
<center><img alt="up" src="file:///android_asset/top.png" id="up" /> </center>
<center><img alt="down" src="file:///android_asset/down.png" id="down"/></center>
<h2><center>
Les nouvelles (Blagues)
</center></h2>
<ul>
<a href="file:///android_asset/index.html"><li class="arrow">La page precedente</li></a>
</ul>
<ul>
<?php
$con = mysql_connect("The Domain","Username","Password");
if (!$con)
  {
  die('Could not connect: ' . mysql_error());
  }

mysql_select_db("DB Name", $con);

$result = mysql_query("SELECT * FROM espace");

while($row = mysql_fetch_array($result))
  {
echo "<a href=".$row['link'].">","<li class=".$row['arrow'].">";
echo $row['news'];
echo "</li></a>";
  };
mysql_close($con);
?>
</ul>
</body>
</html>

在PC上它工作正常,但在电话上我得到:

"," ";echo $row['news'}; echo " 
";}; mysql_close($con); ?>

它需要任何许可吗?

感谢您的任何帮助

4

3 回答 3

1

Android 无法在设备本身上运行 PHP 代码。PHP 是一种服务器端语言,您必须将所有 PHP 功能转移到网络服务器上,并通过它访问它。

请注意,有一个PHP for Android项目,您可以使用它在本地运行代码,但我不确定该端口的完整或活跃程度。

于 2013-04-15T13:36:36.040 回答
1

php 页面是一个脚本,需要一个 PHP 解释器来解析并正确显示。你不能在你的 Android 中拥有它(这不是你真正想要的)。您需要将此脚本存储在与 PHP 兼容的网络服务器中,并通过手机浏览器通过互联网查看它(再次,我想这不是您想要的)

于 2013-04-15T13:36:46.290 回答
0

为 Android 获取一个 Web 服务器,将您的 php 脚本移动到htdocs(或其他)文档文件夹,当以localhost:8080/. 我在智能手机和平板电脑上都使用 KSWeb 服务器,没有任何问题。

于 2013-05-30T19:37:40.010 回答