gpt4 book ai didi

php - 从 php 文件获取数据到 android 应用程序

转载 作者:搜寻专家 更新时间:2023-11-01 09:12:16 25 4
gpt4 key购买 nike

我是使用 Android 应用程序的新手。我想从 php 文件获取数据到 android,但我不知道该怎么做。

我将使用一个我想进入 android 的 php 代码的简单示例:

$array = array(0 => 'zero', 1 => 'one', 2 => 'two'); 
print $array;

此脚本在这里:http://johnyho.net/index.php

能否请您给我一个建议,如何将这个字段放入 android.非常感谢。

主.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
/>
</LinearLayout>

AndroidManifext.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.android.websevice.client.samples"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="8" />
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".AndroidClientService"
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>

最佳答案

考虑 JSON。 HERE是一个 PHP JSON 文档,HERE是一个从 Android 到任何 JSON url 的连接示例,它可能是您的 URL。

关于php - 从 php 文件获取数据到 android 应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7434900/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com