在Android中,可以通過以下方式實現點擊按鈕跳轉界面的功能:
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="跳轉界面" />
Button button = findViewById(R.id.button);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// 跳轉到目標界面
Intent intent = new Intent(MainActivity.this, TargetActivity.class);
startActivity(intent);
}
});
<activity android:name=".TargetActivity">
</activity>
這樣,當用戶點擊按鈕時,就會跳轉到目標界面。注意要替換掉代碼中的MainActivity和TargetActivity為實際的Activity類名。