午夜国产狂喷潮在线观看|国产AⅤ精品一区二区久久|中文字幕AV中文字幕|国产看片高清在线

    android為按鈕添加事件的三種方法
    來源:易賢網(wǎng) 閱讀:2484 次 日期:2015-02-10 10:05:22
    溫馨提示:易賢網(wǎng)小編為您整理了“android為按鈕添加事件的三種方法”,方便廣大網(wǎng)友查閱!

    Android中為按鈕添加事件一般有三種方法,這里總結(jié)一下,當然其實這完全是java基礎(chǔ)內(nèi)容。

    1、內(nèi)部類:

    ?

    代碼片段,雙擊復(fù)制

    btn.setOnClickListener(new OnClickListener()

    {

    public void onClick(View v)

    {

    ...

    }

    });

    這種方法適合只為單個按鈕添加事件,當按鈕較多的時候,就要重復(fù)寫onClick()方法,這樣不是最佳的在做法。

    2、創(chuàng)建獨立的類:

    ?

    代碼片段,雙擊復(fù)制

    btn.setOnClickListener(new MyListener());

    class MyListener implements OnClickListener

    {

    public void onClick(View v)

    {

    ...

    }

    }

    這種做法其實和內(nèi)部類的做法差不多,一般的做法并不需要單獨聲明一個類。相反用內(nèi)部類對類中的隱藏了實現(xiàn)部分。當然這個比內(nèi)部類好的地方就是能復(fù)用。

    3、只實現(xiàn)接口

    ?

    代碼片段,雙擊復(fù)制

    btn.setOnClickListener(listener);

    OnClickListener listener = new OnClickListener()

    {

    public void onClick(View v)

    {

    ...

    }

    };

    這種做法能節(jié)省代碼,當有多個按鈕時,可以同用一個listener,減少了onClick()方法的調(diào)用。而只需在onClick()方法里進行判斷是哪個按鈕就可以了。

    ?

    代碼片段,雙擊復(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=""

    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="錄音"/>

    更多信息請查看IT技術(shù)專欄

    更多信息請查看數(shù)據(jù)庫
    易賢網(wǎng)手機網(wǎng)站地址:android為按鈕添加事件的三種方法
    由于各方面情況的不斷調(diào)整與變化,易賢網(wǎng)提供的所有考試信息和咨詢回復(fù)僅供參考,敬請考生以權(quán)威部門公布的正式信息和咨詢?yōu)闇剩?/div>

    2025國考·省考課程試聽報名

    • 報班類型
    • 姓名
    • 手機號
    • 驗證碼
    關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 新媒體/短視頻平臺 | 手機站點 | 投訴建議
    工業(yè)和信息化部備案號:滇ICP備2023014141號-1 云南省教育廳備案號:云教ICP備0901021 滇公網(wǎng)安備53010202001879號 人力資源服務(wù)許可證:(云)人服證字(2023)第0102001523號
    聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關(guān)注公眾號:hfpxwx
    咨詢QQ:1093837350(9:00—18:00)版權(quán)所有:易賢網(wǎng)