Android Studio--按钮跳转新页

Posted .net BI

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android Studio--按钮跳转新页相关的知识,希望对你有一定的参考价值。

MainActivity.xml:
<Button
android:id="@+id/btnGo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button Go"
android:onClick="skip"
tools:layout_editor_absoluteX="16dp"
tools:layout_editor_absoluteY="28dp" />
MainActivity.java:
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
import android.content.Intent;

onCreate 外声明一个变量:
//声明一个button按钮(不需要和实际按钮同名)
Button bt1;

onCreate 里
//创建监听器 绑定Button资源
bt1 = (Button) findViewById(R.id.btnGo);
//设置Button监听
bt1.setOnClickListener(new MyButtonListener());

onCreate 同级监听:
//实现监听器(需要导入android.view.View和android.content.Intent)
// 实现OnClickListener接口
private class MyButtonListener implements View.OnClickListener {
@Override
public void onClick(View view) {
Intent intent = new Intent();
intent.setClass(MainActivity.this, other.class);//从MainActivity页面跳转至LoginActivity页面
startActivity(intent);
MainActivity.this.finish();
}
}

以上是关于Android Studio--按钮跳转新页的主要内容,如果未能解决你的问题,请参考以下文章

Android studio按钮跳转代码break

android studio 怎么实现按钮跳转

Android studio实现多个按钮跳转多个页面

Android studio 按钮点击页面跳转

android studio实现页面跳转(点击按钮)

请问使用Android Studio点击按钮跳转另一个界面代码应该怎么写?请具体的方法,最好视频。