Maximum length of Intent putExtra method? (Force close)

43,489

Solution 1

As per my experience (sometime ago), you are able to parcel up to 1MB of data in a Bundle for IPC. This limit can be reduced if a lot of transactions are happening at a given time. Further information here.

In order to overcome this issue, I would suggest you to save your content on a temp file and pass the path/URI of your temp file to your second activity. Then in your second activity, read the contents out from file, perform your desired operations and finally delete that file.

If you want, you may also incorporate Shared_Preferences for this task - if you think handling files is cumbersome.

Solution 2

I did some research on the maximum amount of data you can transfer using an Intent. And it seems that the limit is nowhere near 1MB or 90KB, it's more like 500KB (tested on API 10, 16, 19 and 23).

I wrote a blog post about this topic, you can find it here: http://web.archive.org/web/20200217153215/http://neotechsoftware.com/blog/android-intent-size-limit

Solution 3

The fixed size of 1MB is not only limited to intents. As Intents, Content Providers, Messenger, all system services like Telephone, Vibrator etc. utilize IPC infrastructure provider by Binder. Moreover the activity lifecycle callbacks also use this infrastructure.

1MB is the overall limit on all the binder transactions executed in the system at a particular moment.

In case there are lot of transactions happening when the intent is sent,it may fail even though extra data is not large.
http://codetheory.in/an-overview-of-android-binder-framework/

Solution 4

The size limit of Intent is still pretty low in Jelly Bean, which is somewhat lower than 1MB (around 90K), so you should always be cautious about your data length, even if your application targets only latest Android versions.

Solution 5

I have seen that by writing and reading from a file consists of less performance . Then I have seen this solution : . So I am using this solution :

public class ExtendedDataHolder {

    private static ExtendedDataHolder ourInstance = new ExtendedDataHolder();

    private final Map<String, Object> extras = new HashMap<>();

    private ExtendedDataHolder() {
    }

    public static ExtendedDataHolder getInstance() {
        return ourInstance;
    }

    public void putExtra(String name, Object object) {
        extras.put(name, object);
    }

    public Object getExtra(String name) {
        return extras.get(name);
    }

    public boolean hasExtra(String name) {
        return extras.containsKey(name);
    }

    public void clear() {
        extras.clear();
    }

}

Then in MainActivity I have called it like the following :

ExtendedDataHolder extras = ExtendedDataHolder.getInstance();
extras.putExtra("extra", new byte[1024 * 1024]);
extras.putExtra("other", "hello world");

startActivity(new Intent(MainActivity.this, DetailActivity.class));

and in DetailActivity

ExtendedDataHolder extras = ExtendedDataHolder.getInstance();
if (extras.hasExtra("other")) {
    String other = (String) extras.getExtra("other");
}
Share:
43,489
sk2212
Author by

sk2212

Updated on October 15, 2021

Comments

  • sk2212
    sk2212 over 2 years

    I need some help with debugging my application. First of all: In emulator and on some other devices my app is running fine. On my device I got a force close (without a force close message).

    The "crash" happens if the Activity of the app is changed.

    Here is some code of the MainActivity class. It just reads html content from a web page over webview. And no, it is NOT possible to do this over HttpRequest because I was not able to simulate the post request.

    public class MainActivity extends Activity {
    
        public final static String EXTRA_HTML = "com.example.com.test.HTML";
    
        private WebView mWebView;
        private ProgressDialog mDialog;
    
        @Override
        public void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_main);  
            mWebView = (WebView) findViewById(R.id.webView1);
            CookieSyncManager.createInstance(this);
            CookieManager cookieManager = CookieManager.getInstance();
            cookieManager.removeAllCookie();
            mWebView.setBackgroundColor(0);
            mWebView.setWebChromeClient(new WebChromeClient() {
                public boolean onConsoleMessage(ConsoleMessage cmsg) {
                    if (cmsg.message().startsWith("MAGIC")) {
                        mDialog.cancel();
                        /*HashMap<String, String> message = new HashMap<String, String>();*/
                        String msg = cmsg.message().substring(5);
                        Intent intent = new Intent(MainActivity.this,
                            ReadDataActivity.class);
                        /*message.put("message", msg);*/
                        /*intent.putExtra(EXTRA_HTML, message);*/
                                        intent.putExtra(EXTRA_HTML, msg);
                        startActivity(intent);
                    }
                    return false;
                }
            });
            mWebView.getSettings().setJavaScriptEnabled(true);
            mWebView.getSettings().setPluginState(PluginState.OFF);
            mWebView.getSettings().setLoadsImagesAutomatically(false);
            mWebView.getSettings().setBlockNetworkImage(true);
            mWebView.getSettings().setAppCacheEnabled(true);
            mWebView.getSettings().setSavePassword(true);
            mWebView.getSettings()
                    .setCacheMode(WebSettings.LOAD_NORMAL);
            mWebView.setWebViewClient(new WebViewClient() {
    
                public void onPageFinished(WebView view, String address) {
                    if (address.indexOf("mySession") != -1) {
                        view.loadUrl("javascript:console.log('MAGIC'+document.getElementsByTagName('html')[0].innerHTML);");
                    }
    });
    
                    mWebView.loadUrl("http://www.myurl.de");
    
    }
    

    So, in the onConsoleMessage() method I just pass the html code to another Activity class which read, parse and display the content.

    The problem is now that at this point when the ReadDataActivity class should be loaded the application just close and go back to the home screen without any message or user dialog.

    Is it possible that the html code which is passed as a string to the ReadDataActivity is to big? I also try to add the html code as a string in a HashMap but the problem is the same.

    Some ideas what I can do to debug the problem? Maybe I should try to create a Parcelable object?

    In the emulator everything is working fine.