Android Bundle的定义

sal*_*lid 15 android bundle

我是Android新手.你能告诉我什么是Bundle以及它们如何在android中使用?

Chi*_*rag 14

Bundle通常用于在各种活动之间传递数据.这取决于您要传递的值的类型,但bundle可以包含所有类型的值并传递给新活动.

你可以像...一样使用它

Intent intent = new
Intent(getApplicationContext(),SecondActivity.class);
intent.putExtra("myKey",AnyValue);  
startActivity(intent);
Run Code Online (Sandbox Code Playgroud)

现在你可以通过...获得传递的值

Bundle extras = intent.getExtras(); 
String tmp = extras.getString("myKey");
Run Code Online (Sandbox Code Playgroud)

你还可以在android-using-bundle-for-sharing-variables和Passing-Bundles-Around-Activities上找到更多信息

这里复制.


nha*_*man 6

读这个:

http://developer.android.com/reference/android/os/Bundle.html

它可以用来在不同Activity的数据之间传递数据