国产精品天干天干,亚洲毛片在线,日韩gay小鲜肉啪啪18禁,女同Gay自慰喷水

歡迎光臨散文網(wǎng) 會員登陸 & 注冊

android兩個頁面跳轉(zhuǎn)

2022-06-04 18:56 作者:丘奇小怪  | 我要投稿

我們使用 Intent()方法用于兩個Activity之間的跳轉(zhuǎn),按手機的返回鍵可以直接返回到前一個頁面。

1、修改MainActivity

代碼:

public class MainActivity extends AppCompatActivity {

? ?@Override
? ?protected void onCreate(Bundle savedInstanceState) {
? ? ? ?super.onCreate(savedInstanceState);
? ? ? ?setContentView(R.layout.activity_main);
? ?}
// ? ?創(chuàng)建按鈕的onclick方法
? ?public void onclick(View view) {
? ? ? ?Intent intent = new Intent(this,SecondActivity.class);
? ? ? ?startActivity(intent);
? ?}
}

2、修改Layout下的activity_main.xml布局文件

代碼:

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout

? ? xmlns:android="http://schemas.android.com/apk/res/android"

? ? android:layout_width="match_parent"

? ? android:layout_height="match_parent"

? ? android:orientation="vertical"

? ?>

? ? <TextView

? ? ? ? android:id="@+id/tv_first"

? ? ? ? android:layout_width="wrap_content"

? ? ? ? android:layout_height="wrap_content"

? ? ? ? android:text="第一個頁面"

? ? ? ? android:layout_gravity="center"

? ? ? ? android:textSize="40dp"

? ? ? ? />

? ? <Button

? ? ? ? android:layout_width="match_parent"

? ? ? ? android:layout_height="wrap_content"

? ? ? ? android:onClick="onclick"

? ? ? ? android:text="進入第二個頁面"

? ? ? ? />

</LinearLayout>


3、創(chuàng)建SecondActivity,選擇empty activity

這樣直接創(chuàng)建activity會自動在 AndroidManifest.xml 中對activity進行注冊,并且會自動創(chuàng)建對應(yīng)的 .xml 布局文件。

4、修改SecondActivity.xml布局文件

代碼:

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

? ? android:layout_width="match_parent"

? ? android:layout_height="match_parent"

? ? android:orientation="vertical"

? ? >

? ? <TextView

? ? ? ? android:layout_width="wrap_content"

? ? ? ? android:layout_height="wrap_content"

? ? ? ? android:text="第二個頁面"

? ? ? ? android:layout_gravity="center"

? ? ? ? android:textSize="40dp"

? ? ? ? />



</LinearLayout>

然后直接在android虛擬機中運行即可。


android兩個頁面跳轉(zhuǎn)的評論 (共 條)

分享到微博請遵守國家法律
建瓯市| 廉江市| 昌吉市| 丁青县| 邮箱| 平昌县| 嘉义县| 吉木萨尔县| 当涂县| 高安市| 彭泽县| 海门市| 翼城县| 格尔木市| 岚皋县| 临桂县| 上饶县| 宝坻区| 六盘水市| 瑞金市| 临猗县| 盐津县| 藁城市| 道真| 玉田县| 安达市| 阿拉尔市| 定结县| 个旧市| 铁力市| 富平县| 台江县| 周口市| 江源县| 西城区| 霍州市| 仁怀市| 涿州市| 明溪县| 沾化县| 沙洋县|