按钮(Button)是Android当中一个常用的UI组件,很小但是在开发中最常用到。一般通过与监听器结合使用,从而触发一些特定事件。Button继承了TextView。它的功能就是提供一个按钮,这个按钮可以供用户点击,当用户对按钮进行操作的时候,触发相应事件,如点击,触摸。一般对于一个按钮而言,用的最多的就是点击事件,Button间接继承自View,而Android UI中的所有事件,都是定义在View中的。

实例:ButtonDemo
运行效果:



代码清单:
布局文件:main.xml
<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:orientation="vertical"    android:layout_width="fill_parent"    android:layout_height="fill_parent"    >    <Button android:id="@+id/button1"        android:layout_width="fill_parent"        android:layout_height="wrap_content" android:text="Button1" />    <Button android:id="@+id/button2"        android:layout_width="fill_parent"        android:layout_height="wrap_content" android:text="Button2" /></LinearLayout>

Java源代码文件:ActivityButton.java
package com.rainsong.buttondemo;import android.app.Activity;import android.os.Bundle;import android.view.View;import android.view.View.OnClickListener;import android.widget.Button;import android.widget.Toast;public class ActivityButton extends Activity{    Button btn1;    Button btn2;        OnClickListener listener1;    OnClickListener listener2;    /** Called when the activity is first created. */    @Override    public void onCreate(Bundle savedInstanceState)    {        super.onCreate(savedInstanceState);        setContentView(R.layout.main);        listener1 = new OnClickListener() {            public void onClick(View v) {                Toast.makeText(ActivityButton.this, "Button1 clicked",Toast.LENGTH_SHORT).show();            }        };        listener2 = new OnClickListener() {            public void onClick(View v) {                Toast.makeText(ActivityButton.this, "Button2 clicked",Toast.LENGTH_SHORT).show();            }        };        btn1 = (Button)findViewById(R.id.button1);        btn1.setOnClickListener(listener1);        btn2 = (Button)findViewById(R.id.button2);        btn2.setOnClickListener(listener2);    }}

API知识点
Activity

public class
Activity
extends ContextThemeWrapper
implements ComponentCallbacks2 KeyEvent.Callback LayoutInflater.Factory2 View.OnCreateContextMenuListener Window.Callback

View findViewById(int id)
Finds a view that was identified by the id attribute from the XML that was processed in onCreate(Bundle).

void setContentView(int layoutResID)
Set the activity content from a layout resource.

View
public class
View
extends Object
implements Drawable.Callback KeyEvent.Callback AccessibilityEventSource

void setOnClickListener(View.OnClickListener l)
Register a callback to be invoked when this view is clicked.

Button
public class
Button
extends TextView

View.OnClickListener
public static interface
View.OnClickListener

abstract void onClick(View v)
Called when a view has been clicked.

Toast
public class
Toast
extends Object

Constants
int LENGTH_LONG Showthe view or text notification for a long period of time.
int LENGTH_SHORT Showthe view or text notification for a short period of time.

static Toast
makeText(Context context, int resId, int duration)
Make a standard toast that just contains a text view with the text from a resource.

static Toast
makeText(Context context, CharSequence text, int duration)
Make a standard toast that just contains a text view.

void
show()
Show the view for the specified duration.

更多相关文章

  1. 一款常用的 Squid 日志分析工具
  2. GitHub 标星 8K+!一款开源替代 ls 的工具你值得拥有!
  3. RHEL 6 下 DHCP+TFTP+FTP+PXE+Kickstart 实现无人值守安装
  4. Linux 环境下实战 Rsync 备份工具及配置 rsync+inotify 实时同步
  5. 一个android文本比对APP的实现(三)-设计模式在文件选择模块中的运用
  6. 一篇文章带你搞定 Android(安卓)项目的目录结构及如何修改应用的
  7. Android(安卓)开发艺术探索笔记(23)
  8. android开发实践之ndk编译命令简单示例
  9. [置顶] Android(安卓)中VelocityTracker 介绍及简单用法

随机推荐

  1. android 饼图
  2. 数组资源(arrays)的使用
  3. android EditText 默认情况下不获取焦点(
  4. Android中的Context
  5. Android 弹出对话框Dialog
  6. appt命令检测Apk信息的方法
  7. 安卓中的布局属性详解
  8. Android应用程序的安装位置
  9. Android Studio 创建虚拟机失败 Failed t
  10. react-native-vector-icons(android)的安装