在Android中實(shí)現(xiàn)頁(yè)面跳轉(zhuǎn)需要使用Intent來(lái)進(jìn)行頁(yè)面之間的跳轉(zhuǎn)。以下是一個(gè)簡(jiǎn)單的頁(yè)面跳轉(zhuǎn)示例:
<activity android:name=".SecondActivity"></activity>
Intent intent = new Intent(CurrentActivity.this, SecondActivity.class);
startActivity(intent);
Intent intent = new Intent(CurrentActivity.this, SecondActivity.class);
intent.putExtra("key", "value"); // 添加數(shù)據(jù)
startActivity(intent);
Intent intent = getIntent();
String value = intent.getStringExtra("key"); // 獲取數(shù)據(jù)
注意:在上述代碼中,"CurrentActivity"和"SecondActivity"分別代表當(dāng)前Activity和要跳轉(zhuǎn)的目標(biāo)Activity的類(lèi)名。根據(jù)實(shí)際項(xiàng)目中的類(lèi)名進(jìn)行替換。