We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MyActivity onCreate
Bundle bundle=new Bundle(); bundle.putString("name", "From Activity"); bundle.putInt("id", 4); FragmentA fragobjA = new FragmentA(); fragobjA.setArguments(bundle);
and this FragmentA
@Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View rootView = inflater.inflate(R.layout.fragment_a, container, false); Bundle bundle = this.getArguments(); if (bundle != null) { nomor = bundle.getInt("id", 0); info= bundle.getString("name"); }; return rootView; } .....
error nomor and id value : null
The text was updated successfully, but these errors were encountered:
No branches or pull requests
MyActivity onCreate
and this FragmentA
error nomor and id value : null
The text was updated successfully, but these errors were encountered: