Android studio 页面跳转
时间: 2024-01-21 20:49:41 浏览: 98
Android使用Intent显示实现页面跳转
在 Android Studio 中,页面跳转可以通过 Intent 实现。以下是一个简单的例子:
在当前页面中,添加一个按钮并设置点击事件:
```java
Button button = findViewById(R.id.button);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent intent = new Intent(当前页面.this, 跳转页面.class);
startActivity(intent);
}
});
```
在跳转页面的 xml 布局文件中添加一个 TextView:
```xml
<TextView
android:id="@+id/textView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="跳转页面" />
```
最后,在跳转页面的 Java 文件中,设置 TextView 的文本:
```java
TextView textView = findViewById(R.id.textView);
textView.setText("欢迎来到跳转页面!");
```
这样,当用户点击按钮时,就会跳转到另一个页面,并显示文本“欢迎来到跳转页面!”
阅读全文