<Button
android:id="@+id/btn_goto_page"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="跳轉頁面" />
Button btnGotoPage = findViewById(R.id.btn_goto_page);
btnGotoPage.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// 在按鈕點擊事件中執行跳轉頁面的邏輯
Intent intent = new Intent(MainActivity.this, SecondActivity.class);
startActivity(intent);
}
});
<activity android:name=".SecondActivity" />
注意:在跳轉頁面前,需要在 AndroidManifest.xml 文件中注冊目標頁面。此外,還需要創建目標頁面的 Java 類,并為其編寫相應的邏輯代碼。