如何在android中将数据从一个app传递到另一个app

时间:2014-08-06 13:34:14

标签: android android-intent

我开发了2个应用程序,一个用于接收数据和显示列表。通过这个列表,我得到了我需要传递给另一个应用程序的数据,以通过显示饼图来绘制收到的数据。

通过我的第一个应用程序,代码片段在下面,我通过Actionbar传递双变量“pie”的数据点击打开我的第二个应用程序。

public boolean onOptionsItemSelected(MenuItem item){

    switch (item.getItemId()) {

case R.id.action_settings:
            if(item.isChecked()) item.setChecked(false);
            else item.setChecked(true);
            Intent i;
            PackageManager manager = getPackageManager();
            try {
                i = manager.getLaunchIntentForPackage("com.example.piechartexample");
                if (i == null)
                    throw new PackageManager.NameNotFoundException();
                i.addCategory(Intent.CATEGORY_LAUNCHER);
                i.setAction("android.intent.action.MAIN");
                i.putExtra("Send", pie );
                startActivity(i);
            } catch (PackageManager.NameNotFoundException e) {

            }
            return true;
default: x="";Log.d(TAG, x);
            return super.onOptionsItemSelected(item);
    }

这将打开我的第二个应用程序piechartexample。但我无法将馅饼的价值提升到我的第二个应用程序。我的第二个应用程序的代码片段

public class MainActivity extends Activity { 

private  double[] VALUES =getIntent().getDoubleArrayExtra("Send"); 

// some other variables 
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.pie_chart_main);
// show pie char using achartengine
}
}

来自logcat的错误是

D/AndroidRuntime(21366): Shutting down VM
W/dalvikvm(21366): threadid=1: thread exiting with uncaught exception (group=0x41624ba8)
E/AndroidRuntime(21366): FATAL EXCEPTION: main
E/AndroidRuntime(21366): Process: com.example.piechartexample, PID: 21366
E/AndroidRuntime(21366): java.lang.RuntimeException: Unable to instantiate activity ComponentInfo{com.example.piechartexample/com.example.piechartexample.MainActivity}: java.lang.NullPointerException
E/AndroidRuntime(21366):    at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2110)
E/AndroidRuntime(21366):    at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2233)
E/AndroidRuntime(21366):    at android.app.ActivityThread.access$800(ActivityThread.java:135)
E/AndroidRuntime(21366):    at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1196)
E/AndroidRuntime(21366):    at android.os.Handler.dispatchMessage(Handler.java:102)
E/AndroidRuntime(21366):    at android.os.Looper.loop(Looper.java:136)
E/AndroidRuntime(21366):    at android.app.ActivityThread.main(ActivityThread.java:5001)
E/AndroidRuntime(21366):    at java.lang.reflect.Method.invokeNative(Native Method)
E/AndroidRuntime(21366):    at java.lang.reflect.Method.invoke(Method.java:515)
E/AndroidRuntime(21366):    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:785)
E/AndroidRuntime(21366):    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:601)
E/AndroidRuntime(21366):    at dalvik.system.NativeStart.main(Native Method)
E/AndroidRuntime(21366): Caused by: java.lang.NullPointerException
E/AndroidRuntime(21366):    at com.example.piechartexample.MainActivity.<init>(MainActivity.java:30)
E/AndroidRuntime(21366):    at java.lang.Class.newInstanceImpl(Native Method)
E/AndroidRuntime(21366):    at java.lang.Class.newInstance(Class.java:1208)
E/AndroidRuntime(21366):    at android.app.Instrumentation.newActivity(Instrumentation.java:1061)
E/AndroidRuntime(21366):    at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2101)
E/AndroidRuntime(21366):    ... 11 more

3 个答案:

答案 0 :(得分:1)

您应该可以在下一个活动中致电Intent.getStringExtra ("Send");。在这种情况下,我假设piestring

getdoubleArrayExtra()方法中调用onCreate(Bundle savedInstance),如

公共类MainActivity扩展了Activity {

// some other variables 
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.pie_chart_main);
    private  double[] VALUES =getIntent().getDoubleArrayExtra("Send"); 
    // show pie char using achartengine
}
}

答案 1 :(得分:1)

在接收活动中:

Bundle extras = getIntent().getExtras(); 
String send;

if (extras != null) {
    send = extras.getString("Send");
}

答案 2 :(得分:0)

如果您想将数据从一个应用程序发送到另一个应用程序,您可以使用内容提供商。 以下链接可以帮助您。试试这个并回复是否有效

http://developer.android.com/guide/topics/providers/content-providers.html http://www.tutorialspoint.com/android/android_content_providers.htm