2

我正在尝试将一组 1000000int秒的数组从一个Activity到另一个。它适用于较小的数字,但是当我尝试 1000000 时,startActivity什么也不做,并导致它在 logcat 中显示:

E/JavaBinder(2239): !!! FAILED BINDER TRANSACTION !!!

为什么?

这是一些演示该问题的代码:

MainActivity.java

package com.example.a;
import android.os.Bundle;
import android.view.View;
import android.app.Activity;
import android.content.Intent;
public class MainActivity extends Activity {
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
  }
  public void startSecond(View v) {
    startActivity(new Intent(this, SecondActivity.class).putExtra(
        "a", new int[1000000]));
  }
}

SecondActivity.java

package com.example.a;
import android.os.Bundle;
import android.app.Activity;
public class SecondActivity extends Activity {
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_second);
  }
}

activity_main.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity" >
    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:layout_marginLeft="56dp"
        android:layout_marginTop="31dp"
        android:onClick="startSecond"
        android:text="click clack" />
</RelativeLayout>

activity_second.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >
</LinearLayout>

AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.a"
    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.a.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.a.SecondActivity"></activity>
    </application>
</manifest>
4

1 回答 1

7

为什么?

因为每个 Binder 事务限制为 1MB,而 Binder 是Intent系统的基础。您的 . 文件大小(Intent包括所有附加内容)必须小于 1MB。

于 2013-08-14T23:26:17.590 回答