相關(guān)資訊
本類常用軟件
-
福建農(nóng)村信用社手機(jī)銀行客戶端下載下載量:584204
-
Windows優(yōu)化大師下載量:416912
-
90美女秀(視頻聊天軟件)下載量:366961
-
廣西農(nóng)村信用社手機(jī)銀行客戶端下載下載量:365699
-
快播手機(jī)版下載量:325855
android為按鈕添加事件的三種方法
2013/1/20 0:33:20 出處:本站原創(chuàng) 人氣:13751次 字號:小 中 大
Android中為按鈕添加事件一般有三種方法,這里總結(jié)一下,當(dāng)然其實(shí)這完全是java基礎(chǔ)內(nèi)容。
1、內(nèi)部類:
?
代碼片段,雙擊復(fù)制
btn.setOnClickListener(new OnClickListener()
{
public void onClick(View v)
{
...
}
});
這種方法適合只為單個按鈕添加事件,當(dāng)按鈕較多的時候,就要重復(fù)寫onClick()方法,這樣不是最佳的在做法。
2、創(chuàng)建獨(dú)立的類:
?
代碼片段,雙擊復(fù)制
btn.setOnClickListener(new MyListener());
class MyListener implements OnClickListener
{
public void onClick(View v)
{
...
}
}
這種做法其實(shí)和內(nèi)部類的做法差不多,一般的做法并不需要單獨(dú)聲明一個類。相反用內(nèi)部類對類中的隱藏了實(shí)現(xiàn)部分。當(dāng)然這個比內(nèi)部類好的地方就是能復(fù)用。
3、只實(shí)現(xiàn)接口
?
代碼片段,雙擊復(fù)制
btn.setOnClickListener(listener);
OnClickListener listener = new OnClickListener()
{
public void onClick(View v)
{
...
}
};
這種做法能節(jié)省代碼,當(dāng)有多個按鈕時,可以同用一個listener,減少了onClick()方法的調(diào)用。而只需在onClick()方法里進(jìn)行判斷是哪個按鈕就可以了。
?
代碼片段,雙擊復(fù)制
btn1 = (Button) findViewById(R.id.btn1);
btn2 = (Button) findViewById(R.id.btn2);
btn1.setOnClickListener(listener);
btn2.setOnClickListener(listener);
OnClickListener listener = new OnClickListener()
{
public void onClick(View v)
{
btn = (Button)v;
switch(btn.getId())
{
case R.id.btn1:
...;
break;
case R.id.btn2:
...;
break;
...
}
}
};
Android拍照、錄像、錄音代碼范例
import java.io.File;
import java.text.SimpleDateFormat;
import java.util.Date;
import android.app.Activity;
import android.content.Intent;
import android.database.Cursor;
import android.net.Uri;
import android.os.Bundle;
import android.os.Environment;
import android.provider.MediaStore;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.Toast;
public class ActivityMedia extends Activity implements OnClickListener {
private static final int RESULT_CAPTURE_IMAGE = 1;// 照相的requestCode
private static final int REQUEST_CODE_TAKE_VIDEO = 2;// 攝像的照相的requestCode
private static final int RESULT_CAPTURE_RECORDER_SOUND = 3;// 錄音的requestCode
private String strImgPath = "";// 照片文件絕對路徑
private String strVideoPath = "";// 視頻文件的絕對路徑
private String strRecorderPath = "";// 錄音文件的絕對路徑
Button buttonShot;
Button buttonVideo;
Button buttonRecorder;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
this.setContentView(R.layout.media);
buttonShot = (Button)findViewById(R.id.ButtonShot);
buttonShot.setOnClickListener(this);
buttonVideo = (Button)findViewById(R.id.ButtonVideo);
buttonVideo.setOnClickListener(this);
buttonRecorder = (Button)findViewById(R.id.ButtonRecorder);
buttonRecorder.setOnClickListener(this);
}
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
switch (requestCode) {
case RESULT_CAPTURE_IMAGE://拍照
if (resultCode == RESULT_OK) {
Toast.makeText(this, strImgPath, Toast.LENGTH_SHORT).show();
}
break;
case REQUEST_CODE_TAKE_VIDEO://拍攝視頻
if (resultCode == RESULT_OK) {
Uri uriVideo = data.getData();
Cursor cursor=this.getContentResolver().query(uriVideo, null, null, null, null);
if (cursor.moveToNext()) {
/* _data:文件的絕對路徑 ,_display_name:文件名 */
strVideoPath = cursor.getString(cursor.getColumnIndex("_data"));
Toast.makeText(this, strVideoPath, Toast.LENGTH_SHORT).show();
}
}
break;
case RESULT_CAPTURE_RECORDER_SOUND://錄音
if (resultCode == RESULT_OK) {
Uri uriRecorder = data.getData();
Cursor cursor=this.getContentResolver().query(uriRecorder, null, null, null, null);
if (cursor.moveToNext()) {
/* _data:文件的絕對路徑 ,_display_name:文件名 */
strRecorderPath = cursor.getString(cursor.getColumnIndex("_data"));
Toast.makeText(this, strRecorderPath, Toast.LENGTH_SHORT).show();
}
}
break;
}
}
/**
* 照相功能
*/
private void cameraMethod() {
Intent imageCaptureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
strImgPath = Environment.getExternalStorageDirectory().toString() + "/CONSDCGMPIC/";//存放照片的文件夾
String fileName = new SimpleDateFormat("yyyyMMddHHmmss").format(new Date()) + ".jpg";//照片命名
File out = new File(strImgPath);
if (!out.exists()) {
out.mkdirs();
}
out = new File(strImgPath, fileName);
strImgPath = strImgPath + fileName;//該照片的絕對路徑
Uri uri = Uri.fromFile(out);
imageCaptureIntent.putExtra(MediaStore.EXTRA_OUTPUT, uri);
imageCaptureIntent.putExtra(MediaStore.EXTRA_VIDEO_QUALITY, 1);
startActivityForResult(imageCaptureIntent, RESULT_CAPTURE_IMAGE);
}
/**
* 拍攝視頻
*/
private void videoMethod() {
Intent intent = new Intent(MediaStore.ACTION_VIDEO_CAPTURE);
intent.putExtra(MediaStore.EXTRA_VIDEO_QUALITY, 0);
startActivityForResult(intent, REQUEST_CODE_TAKE_VIDEO);
}
/**
* 錄音功能
*/
private void soundRecorderMethod() {
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("audio/amr");
startActivityForResult(intent, RESULT_CAPTURE_RECORDER_SOUND);
}
/**
* 提示信息
* @param text
* @param duration
*/
private void showToast(String text, int duration) {
Toast.makeText(ActivityMedia.this, text, duration).show();
}
public void onClick(View v) {
int id = v.getId();
switch(id){
case R.id.ButtonShot:
cameraMethod();
break;
case R.id.ButtonVideo:
videoMethod();
break;
case R.id.ButtonRecorder:
soundRecorderMethod();
break;
}
}
}
復(fù)制代碼
界面布局:
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
android:id="@+id/ButtonShot"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="拍照"/>
android:id="@+id/ButtonVideo"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="錄像"/>
android:id="@+id/ButtonRecorder"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="錄音"/>