Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/csharp/305.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
我从Java广播信息并在Unity中接收信息的错误在哪里?_Java_C#_Android_Unity3d - Fatal编程技术网

我从Java广播信息并在Unity中接收信息的错误在哪里?

我从Java广播信息并在Unity中接收信息的错误在哪里?,java,c#,android,unity3d,Java,C#,Android,Unity3d,所以我刚开始做这个项目,其中一部分是将信息包从Java中的一个应用发送到另一个Unity应用 我一直在努力学习,但我在使用它时遇到了一些问题,甚至有点理解它,因为我以前没有使用过Java 这是我目前掌握的代码 主要活动课 发送方类 } 发送方的XML 统一安卓清单 我意识到这是一个很大的帖子,但我现在不知道该怎么办,我正在考虑退出这个项目,因为我不知道如何让Java与Unity通信 提前感谢。MC——这是两个不同的Android应用程序,运行在同一台Android设备上??所以,基本上使用A

所以我刚开始做这个项目,其中一部分是将信息包从Java中的一个应用发送到另一个Unity应用

我一直在努力学习,但我在使用它时遇到了一些问题,甚至有点理解它,因为我以前没有使用过Java

这是我目前掌握的代码

主要活动课 发送方类 }

发送方的XML 统一安卓清单

我意识到这是一个很大的帖子,但我现在不知道该怎么办,我正在考虑退出这个项目,因为我不知道如何让Java与Unity通信


提前感谢。

MC——这是两个不同的Android应用程序,运行在同一台Android设备上??所以,基本上使用Android的“服务”概念。是吗?是的,两个应用程序都同时在同一部手机上运行。我让它的一部分工作起来,unity插件获取并读取字符串text=“1”;我在接收者中有,但是发送者似乎没有工作,无论我对unity.xml文件做了什么编辑,它仍然会打印来自接收者的1——这是在同一个Android设备上运行的两个不同的Android应用??所以,基本上使用Android的“服务”概念。是吗?是的,两个应用程序都同时在同一部手机上运行。我让它的一部分工作起来,unity插件获取并读取字符串text=“1”;我在接收者中有,但是发送者似乎没有工作,无论我对unity.xml文件做了什么编辑,它仍然会从接收者打印1
package com.example.service3;

import android.support.v7.app.ActionBarActivity;
import android.support.v7.app.ActionBar;
import android.support.v4.app.Fragment;
import android.content.Intent;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.ViewGroup;
import android.os.Build;

public class MainActivity extends ActionBarActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    if (savedInstanceState == null) {
        getSupportFragmentManager().beginTransaction()
                .add(R.id.container, new PlaceholderFragment()).commit();
    }
    startService(new Intent(this, MyService.class));
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {

    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.main, menu);
    return true;
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    // Handle action bar item clicks here. The action bar will
    // automatically handle clicks on the Home/Up button, so long
    // as you specify a parent activity in AndroidManifest.xml.
    int id = item.getItemId();
    if (id == R.id.action_settings) {
        return true;
    }
    return super.onOptionsItemSelected(item);
}

/**
 * A placeholder fragment containing a simple view.
 */
public static class PlaceholderFragment extends Fragment {

    public PlaceholderFragment() {
    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState) {
        View rootView = inflater.inflate(R.layout.fragment_main, container,
                false);
        return rootView;
    }
}

}
package com.example.service3;

import android.app.Service;
import android.content.Intent;
import android.os.Handler;
import android.os.IBinder;

public class MyService extends Service
{
private final Handler handler = new Handler();

private int numIntent;

// It's the code we want our Handler to execute to send data
private Runnable sendData = new Runnable() {
        // the specific method which will be executed by the handler
        public void run() {
                numIntent++;

                // sendIntent is the object that will be broadcast outside our app
                Intent sendIntent = new Intent();

                // We add flags for example to work from background                    
                sendIntent.addFlags(Intent.FLAG_ACTIVITY_NO_ANIMATION|Intent.FLAG_FROM_BACKGROUND|Intent.FLAG_INCLUDE_STOPPED_PACKAGES  );

                // SetAction uses a string which is an important name as it identifies the sender of the itent and that we will give to the receiver to know what to listen.
                // By convention, it's suggested to use the current package name
                sendIntent.setAction("com.example.service3");

                // Here we fill the Intent with our data, here just a string with an incremented number in it.
                sendIntent.putExtra(Intent.EXTRA_TEXT, "Intent "+numIntent);
                // And here it goes ! our message is send to any other app that want to listen to it.
                sendBroadcast(sendIntent);

                // In our case we run this method each second with postDelayed
                handler.removeCallbacks(this);
                handler.postDelayed(this, 1000);
        }
};

@Override
public void onStart(Intent intent, int startid) {
        numIntent = 0;
        // We first start the Handler
        handler.removeCallbacks(sendData);
        handler.postDelayed(sendData, 1000);
}
@Override
public IBinder onBind(Intent arg0) {
    // TODO Auto-generated method stub
    return null;
}
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.service3"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
    android:minSdkVersion="12"
    android:targetSdkVersion="19" />

<application

    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name="com.example.service3.MainActivity"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <service android:enabled="true" android:name="com.example.service3.MyService" />
</application>
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;


public class Receiver extends BroadcastReceiver
{
private static Receiver instance;
public static String text ="1";

@Override
public void onReceive(Context context, Intent intent) 
{
    // TODO Auto-generated method stub
    String sentIntent = intent.getStringExtra(Intent.EXTRA_TEXT);
    text = "-1";
}
public static void createInstance()
{
    if(instance == null)
    {
        instance = new Receiver();
    }
}

}
<application android:theme="@android:style/Theme.NoTitleBar.Fullscreen"     android:icon="@drawable/app_icon" android:label="@string/app_name"     android:debuggable="false" android:isGame="true" android:banner="@drawable/app_banner">
<activity android:name="com.unity3d.player.UnityPlayerActivity" android:label="@string/app_name" android:screenOrientation="fullSensor" android:launchMode="singleTask" android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|orientation|screenLayout|uiMode|screenSize|smallestScreenSize|fontScale">
  <intent-filter>
    <action android:name="android.intent.action.MAIN" />
    <category android:name="android.intent.category.LAUNCHER" />
    <category android:name="android.intent.category.LEANBACK_LAUNCHER" />
  </intent-filter>
  <meta-data android:name="unityplayer.UnityActivity" android:value="true" />
</activity>
<receiver android:name="com.example.receiver3.MyReceiver" >
    <intent-filter>
            <action android:name="com.example.receiver3" ></action>
    </intent-filter>
  </receiver>
  </application>