Android之ImageButton使用

把需要的图片按钮放到项目res文件夹下的drawable-hdpi文件夹里。添加ImageButton按钮

.xml文件代码如下

<pre name="code" class="html"><?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" >

    <ImageButton
        android:id="@+id/imageButton1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:layout_marginLeft="35dp"
        android:layout_marginTop="126dp"
        android:src="@drawable/naoz" />

    <ImageButton
        android:id="@+id/imageButton2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/imageButton1"
        android:layout_below="@+id/imageButton1"
        android:src="@drawable/share" />

</RelativeLayout>


 
<pre name="code" class="java">package com.example.android_button;

import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.ImageButton;
import android.widget.Toast;

public class ImageButtons extends Activity implements OnClickListener{
	
	private ImageButton imagebtn1,imagebtn2;
	
	@Override
	protected void onCreate(Bundle savedInstanceState) {
		// TODO Auto-generated method stub
		super.onCreate(savedInstanceState);
		setContentView(R.layout.imagebuttons);//每次创建完XML,再写对应的类的时候,这句话不要忘记,否则会闪退
		imagebtn1=(ImageButton) this.findViewById(R.id.imageButton1);
		imagebtn2=(ImageButton) this.findViewById(R.id.imageButton2);
		
		imagebtn1.setOnClickListener(this);
		imagebtn2.setOnClickListener(this);
	}

	@Override
	public void onClick(View v) {
		// TODO Auto-generated method stub
		switch(v.getId()){
			case R.id.imageButton1:
				Toast.makeText(ImageButtons.this, "i am a clock", 1).show();
				break;
			case R.id.imageButton2:
				Toast.makeText(ImageButtons.this, "i am a share", 1).show();
				break;
		}
	}

}

//运行效果图如下


 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值