茄子在线看片免费人成视频,午夜福利精品a在线观看,国产高清自产拍在线观看,久久综合久久狠狠综合

    <s id="ddbnn"></s>
  • <sub id="ddbnn"><ol id="ddbnn"></ol></sub>

  • <legend id="ddbnn"></legend><s id="ddbnn"></s>

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

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

    1、內(nèi)部類:

    ?

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

    btn.setOnClickListener(new OnClickListener()

    {

    public void onClick(View v)

    {

    ...

    }

    });

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

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

    ?

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

    btn.setOnClickListener(new MyListener());

    class MyListener implements OnClickListener

    {

    public void onClick(View v)

    {

    ...

    }

    }

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

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

    ?

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

    btn.setOnClickListener(listener);

    OnClickListener listener = new OnClickListener()

    {

    public void onClick(View v)

    {

    ...

    }

    };

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

    ?

    代碼片段,雙擊復(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 = "";// 照片文件絕對(duì)路徑

    private String strVideoPath = "";// 視頻文件的絕對(duì)路徑

    private String strRecorderPath = "";// 錄音文件的絕對(duì)路徑

    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:文件的絕對(duì)路徑 ,_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:文件的絕對(duì)路徑 ,_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;//該照片的絕對(duì)路徑

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

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

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

    2026國(guó)考·省考課程試聽(tīng)報(bào)名

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