android studio intent跳转
时间: 2023-04-16 12:04:42 浏览: 149
Androidstudio实现页面跳转和传递参数
4星 · 用户满意度95%
Android Studio 中使用 Intent 进行页面跳转非常简单。
在当前页面代码中使用 Intent 来启动另一个页面,如下所示:
```
Intent intent = new Intent(this, AnotherActivity.class);
startActivity(intent);
```
其中,`this` 指当前页面的上下文,`AnotherActivity.class` 指要跳转的目标页面。
如果需要在跳转页面之间传递数据,可以使用 Intent 的 putExtra() 方法,如下所示:
```
Intent intent = new Intent(this, AnotherActivity.class);
intent.putExtra("key", "value");
startActivity(intent);
```
在目标页面中,可以使用 getIntent() 方法获取到这个 Intent 对象,然后使用 getStringExtra() 或者 getIntExtra()等方法来获取传递过来的数据。
阅读全文