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上找到更多信息
从这里复制.
| 归档时间: |
|
| 查看次数: |
10923 次 |
| 最近记录: |