0

我想在不同的应用程序中发送一个数组。

所以在第一个应用程序中我有 MainActivity。Activity 将启动一个意图。当我试图做出一个意图时,我发现了一个问题。问题是ShowArrayActivity“无法解决类型”。实际上ShowArrayActivity类是在另一个应用程序中。我试图在构建路径中添加项目,但我有一条错误消息说a cycle was detected in the build path of project 'sendIntent'..

package com.example.sendintent;

import android.app.Activity;
import android.content.ComponentName;
import android.content.Intent;
import android.os.Bundle;
import android.view.Menu;
import android.view.View;
import android.widget.EditText;
import com.example.sendintent.DisplayMessageActivity;

public class MainActivity extends Activity {
    public static final String ARRAYS_COUNT = "com.example.sendintent.MainActivity.ARRAYS_COUNT"; 
    public static final String ARRAY_INDEX = "com.example.sendintent.MainActivity.ARRAY_INDEX";



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

    @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;
    }

    public void sendMessage(View view) 
    {
        final String data[][] = new  String[][] 
                {{"Car","75","loaded"},
                 {"Motor","25","loaded"},
                 {"Truck","30","loaded"},
                 {"Bike","40","loaded"},
                 {"Boat","10","loaded"}};

         Bundle bundle = new Bundle();
         int count = data.length;

         bundle.putInt(ARRAYS_COUNT, count);

         for (int i = 0; i < count; i++)

                 bundle.putStringArray(ARRAY_INDEX + i, data[i]);

         Intent intent = new Intent(this, ShowArrayActivity.class); ---->ERROR

         intent.putExtras(bundle);
         startActivity(intent);


}
    }

在清单中我已经宣布

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

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

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.example.sendintent.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>
        <activity
            android:name="com.example.sendintent.DisplayMessageActivity"
            android:parentActivityName="com.example.sendintent.MainActivity" >
            <meta-data
                android:name="android.support.PARENT_ACTIVITY"
                android:value="com.example.sendintent.MainActivity" />
        </activity>
        <service android:name="com.example.sendintent.MainActivity" />
        <receiver android:name="com.example.receiver.MainActivityReceiver">
            <intent-filter>
          <action android:name="com.example.sendintent.MainActivity.ARRAYS_COUNT"/>
          <action android:name="com.example.sendintent.MainActivity.ARRAYS_INDEX"/>
      </intent-filter>
  </receiver>

    </application>

</manifest>

在另一个应用程序中,我已经声明了意图的接收者。它称为 MainActivityReceiver

package com.example.receiver;

import java.util.ArrayList;

import com.example.sendintent.MainActivity;

import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;


public class MainActivityReceiver extends BroadcastReceiver {


    @Override
    public void onReceive(Context context, Intent intent) {
        intent.setClass(context, MainActivity.class);
        context.startService(intent);             
    }

}

我有另一个名为 ShowArrayAcivity 的类:

package com.example.receiver;

import java.util.ArrayList;

import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;

public class ShowArrayActivity extends Activity {
    public String[][] data;
    public static final String ARRAYS_COUNT = "com.example.sendintent.MainActivity.ARRAYS_COUNT"; 
    public static final String ARRAY_INDEX = "com.example.sendintent.MainActivity.ARRAY_INDEX";

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

         Bundle bundle = getIntent().getExtras();



            if (bundle != null) {

                    int count = bundle.getInt(ShowArrayActivity.ARRAYS_COUNT, 0);

                    ArrayList<String[]> arrays = new ArrayList<String[]>(count);

                    for (int i = 0; i < count; i++)

                            arrays.add(bundle.getStringArray(ShowArrayActivity.ARRAY_INDEX + i));

                    data = arrays.toArray(new String[][]{});
            }


    }

    @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;
    }

}

在接收器应用程序的清单中

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

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

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.example.receiver.ShowArrayActivity"
            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:name="com.example.sendintent.MainActivity" />
  <receiver android:name="com.example.receiver.MainActivityReceiver">
      <intent-filter>
          <action android:name="com.example.sendintent.MainActivity.ARRAYS_COUNT"/>
          <action android:name="com.example.sendintent.MainActivity.ARRAYS_INDEX"/>
      </intent-filter>
  </receiver>

    </application>

</manifest>

In receiver application, It won't show the array from sendIntent application in Interface. I just want to know the way to use broadcast and intent. So if I run in debug mode,in ShowArrayActivity, the variable data will containt the result of the intent. So my questions is,why I can't use another class when I try to send the intent? Did I forgot something to implement for madethe communication between 2 application?

4

1 回答 1

0
Intent intent = new Intent(this, ShowArrayActivity.class);

this way you tell activity to find ShowArrayActivity within this Application and launch it. It fails as Application can't find it in it's manifest.

Create Intent with action.

Intent intent = new Intent (NAME_OF_THE_FILTER);

then replace string it second manifest

assuming

public static final String NAME_OF_THE_FILTER = "com.myapp.myfilter"


<intent-filter>
      <action android:name="com.myapp.myfilter"/>      
</intent-filter>
于 2013-09-18T19:24:41.757 回答