溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Android基礎(chǔ)

發(fā)布時間:2020-06-28 07:54:32 來源:網(wǎng)絡(luò) 閱讀:477 作者:眉間雪 欄目:移動開發(fā)

1,

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);#任何的項目都需要覆寫父類的onCreate方法

setContentView(R.layout.activity_main);#顯示出你所定義的布局,或指在當前活動中加載你所需要的布局

}

2,創(chuàng)造加載布局 res/layout/new/android xml file

Android基礎(chǔ)

<?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" >布局是垂直的,添加文件只能垂直添加

    <Button

        android:id="@+id/button1"//添加一個按鈕

        android:layout_width="match_parent"

        android:layout_height="wrap_content"//只能包裹住文字

        android:text="Button" />

</LinearLayout>

3,

       @Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

requestWindowFeature(Window.FEATURE_NO_TITLE);//隱藏標題欄

setContentView(R.layout.first_layout);

}

4,

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

requestWindowFeature(Window.FEATURE_NO_TITLE);//隱藏標題欄

setContentView(R.layout.first_layout);

Button button1 = (Button) findViewById(R.id.button1);

button1.setOnClickListener(new OnClickListener() {//創(chuàng)造一個按鈕的監(jiān)聽器,點擊會有響應(yīng),如果出現(xiàn)錯誤,點擊//ctrl+shift+o即可

@Override

public void onClick(View v) {

// TODO 自動生成的方法存根

Toast.makeText(getApplicationContext(), "you clicked button1", Toast.LENGTH_SHORT).show();

}

});

}


向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI