3.15

所花时间(包括上课):3.2

打码量(行):550

博客量(篇):1

了解到知识点:学习Button

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

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

    android:layout_width="match_parent"

    android:layout_height="match_parent">

 

    <!-- Button -->

    <Button

        android:id="@+id/button"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:text="Click Me"

        android:layout_centerInParent="true"

        android:onClick="onButtonClick" />

 

</RelativeLayout>

import android.os.Bundle;

import android.view.View;

import android.widget.Toast;

 

import androidx.appcompat.app.AppCompatActivity;

 

public class MainActivity extends AppCompatActivity {

 

    @Override

    protected void onCreate(Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);

        setContentView(R.layout.activity_main);

    }

 

    // 点击按钮时调用的方法

    public void onButtonClick(View view) {

        // 处理按钮点击事件

        Toast.makeText(this, "Button Clicked!", Toast.LENGTH_SHORT).show();

        

    }

}

 

posted @ 2024-03-15 16:50  赵千万  阅读(1)  评论(0编辑  收藏  举报