1. 程式人生 > >Android Studio--按鈕跳轉新頁

Android Studio--按鈕跳轉新頁

public imp 導入 .text create layout ride tar roi

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--按鈕跳轉新頁