Top "Android-bundle" questions

A mapping used to pass data between various Activities & Fragments in Android

Getting bundle on Main activity when passing bundles by intent in android

So the problem I am having is that my app keeps crashing on launch, I have two activities. Activity A …

java android android-intent android-activity android-bundle
Send data to fragment with FragmentTransaction

I'm in my fragment class calling this: @OnClick(R.id.blockedLinkLayout) public void onBlockedClick(){ final FragmentTransaction ft = getFragmentManager().beginTransaction(); ft.…

android android-fragments send android-bundle fragment-transitions
Passing List of Objects to Fragment

class CholesterolPagingFragment: Fragment() { companion object { fun newInstance(): CholesterolPagingFragment { val args = Bundle() val fragment = CholesterolPagingFragment() fragment.arguments = args return fragment } } override …

android android-fragments kotlin android-bundle
Kotlin extensions for Android: How to use bundleOf

Documentation says: fun bundleOf(vararg pairs: Pair<String, Any?>): Bundle Returns a new Bundle with the given key/…

android kotlin android-bundle android-ktx
Put interface in bundle to start a new activity

I need to start an activity from 2 different screens that have two different models but, both models have some shared …

android android-activity interface android-bundle
FAILED BINDER TRANSACTION while passing Bitmap from one activity to another

I want to pass a image as a bitmap from one activity to another. And i want to know whether …

android android-intent android-bitmap android-bundle
How to receive Intent in Activity

Honestly I did somesearch about this before asking. how to receive intent from activity to fragmentactivity I am trying to …

android android-intent parcelable android-bundle
Size limitation on attached Parcelable?

I want to know is there any size limitation on Parcelable that attached to an Intent? I Read some docs …

android android-intent parcelable android-bundle
How to get the getArguments data from a fragment?

I am using a fragment for my application.and I also add a bundle into my fragments but when I …

android android-fragments android-bundle