Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to examine the size of the Bundle object in onSaveInstanceState?

I am using Android Studio 3.0.1 which allows to inspect the Bundle object in onSaveInstanceState:

@Override
protected void onSaveInstanceState(Bundle outState) {
    super.onSaveInstanceState(outState);
}

To do so add a breakpoint and once the debugger stops right click the Bundle object as shown in the screenshot and select "Show Bundle Objects..." from the context menu.

Android Studio - Show Bundle Objects

Then a window opens to list the Bundle objects as shown in this screenshot:

Android Studio - Bundle objects

Is there a way to find out how much memory the whole Bundle and it's children occupy? I want to identify the bigger chunks to optimize and avoid TransactionTooLargeException to be thrown on Android >= 7.

Something like Ubuntu Disk Usage Analyzer would be helpful - see screeshot:

Disk Usage Analyzer

like image 227
JJD Avatar asked Jan 30 '23 02:01

JJD


2 Answers

You can also use this one :-

=> just pass the Bundle here

public int  getBundleSizeInBytes(Bundle bundle  ) {
            Parcel parcel = Parcel.obtain();
            parcel.writeValue(bundle);
            byte[] bytes = parcel.marshall();
            parcel.recycle();
            return bytes.length;
}

Then use android.text.format.Formatter.formatFileSize(activityContext, bytes) to output nicely.

like image 164
ChandraShekhar Kaushik Avatar answered Jan 31 '23 17:01

ChandraShekhar Kaushik


The TooLargeTool is great for analysing bundle size when diagnosing TransactionTooLargeException.

like image 44
Martin Avatar answered Jan 31 '23 16:01

Martin