所以我正在运行一个扩展UnityPlayerActivity的java插件。我成功覆盖了onCreate函数。唯一的问题是当我尝试获取意图数据时,它为null。 Im寻找的数据是触发意图的网址。
package com.company.androidlink;
import java.net.URL;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.util.Log;
import com.unity3d.player.*;
public class Main extends UnityPlayerActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Intent intent = getIntent();
uri = intent.getData();
url = new URL(uri.getScheme(), uri.getHost(), uri.getPath());
}
}
清单
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.company.androidlink"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="9"
android:targetSdkVersion="21" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".Main"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
答案 0 :(得分:1)
我几个月前开发了一个插件,将文本发送到Unity3D应用程序。该方法位于根活动中(相当于您的&#34; Main&#34;)如下:
public static String getExtraText() {
String extraText = "";
// Store extra parameter for later.
Intent intent = UnityPlayer.currentActivity.getIntent();
if (intent != null) {
String action = intent.getAction();
String type = intent.getType();
if (action.equals(Intent.ACTION_VIEW) && type != null) {
if (type.equals("text/plain")) {
extraText = intent.getStringExtra(Intent.EXTRA_TEXT);
DebugBridge.log_d("Extra Text: " + extraText);
} else {
DebugBridge.toast("Unknown MIME type");
}
}
}
return extraText;
}
我没有在启动时获取文本,只需调用&#34; getExtraText&#34;在需要时从Unity应用程序开始(通常在开始时)。
这是我将数据从另一个Android原生测试应用程序发送到unity的方式:
boolean sendMessageToApp(String message, String appName) {
ComponentName name = findNativeApp(appName);
if (name != null) {
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setComponent(name);
intent.addCategory(Intent.CATEGORY_LAUNCHER);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
intent.setType("text/plain");
intent.putExtra(Intent.EXTRA_TEXT, message);
startActivity(intent);
return true;
}
return false;
}