Android学习笔记篇1. 从按钮的点击事件开始
Posted 卉卉今天喝水了吗
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android学习笔记篇1. 从按钮的点击事件开始相关的知识,希望对你有一定的参考价值。
布局:
在XML文件中写三个按钮,给它们不同的id:
(为按钮2绑定点击方法click:android:onClick=“click”)
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="8dp"
tools:context=".MainActivity">
<Button
android:id="@+id/btn_one"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="按钮1"/>
<Button
android:id="@+id/btn_two"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="按钮2"
android:onClick="click"/>
<Button
android:id="@+id/btn_three"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="按钮3"/>
</LinearLayout>
在Java中编写代码,实现三种类型的按钮的点击事件:
(详细看注释)
package com.example.no_1;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
public class MainActivity extends AppCompatActivity implements View.OnClickListener
private Button btn_one, btn_two, btn_three;
@Override
protected void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
btn_one = (Button)findViewById(R.id.btn_one);
btn_two = (Button)findViewById(R.id.btn_two);
btn_three = (Button)findViewById(R.id.btn_three);
btn_three.setOnClickListener(this);
/**
* 使用匿名内部类,实现按钮1的点击
*/
btn_one.setOnClickListener(new View.OnClickListener()
@Override
public void onClick(View view)
btn_one.setText("按钮1被点击");
);
/**
* 以控件按钮2中的Onclick属性值click
* 为名创建的点击方法,实现按钮2的点击
* @param view
*/
public void click(View view)
btn_two.setText("按钮2被点击");
/**
* 实现OnClickListener接口中的方法onClick
* 实现按钮3的点击
* @param view
*/
@Override
public void onClick(View view)
switch (view.getId())
case R.id.btn_three:
btn_three.setText("按钮3被点击");
运行,点击三个按钮,显示设定文字:
以上是关于Android学习笔记篇1. 从按钮的点击事件开始的主要内容,如果未能解决你的问题,请参考以下文章