亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

監聽事件的三種寫法

發布時間:2020-07-07 03:09:26 來源:網絡 閱讀:369 作者:小石頭llx 欄目:移動開發
//監聽事件的三種寫法:匿名內部類,獨立類監聽按鈕點擊事件 , 實現接口

//strings.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string name="app_name">EventMonitor</string>
    <string name="hello_world">Hello world!</string>
    <string name="action_settings">Settings</string>
    <string name="button_name">登陸</string>
</resources>

//activity_main.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context="com.vincentlin.eventmonitor.MainActivity" >

    <Button
        android:id="@+id/button1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="@string/button_name" />
    <ImageButton
        android:id="@+id/p_w_picpathButton1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="50dp"
        android:src="@drawable/ic_launcher" />
</RelativeLayout>

//MainActivity.java

package com.vincentlin.eventmonitor;
import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.ImageButton;
public class MainActivity extends Activity implements OnClickListener{
 /**
  * Button---可以設置文本內容一個按鈕
  * ImageButton(src屬性,background屬性-不可以設置文本內容,但可以通過用background以及src添加一個p_w_picpath,
     * 當前圖片上可以做一個有文本內容的圖片)
  */
 private Button loginButton;
 private ImageButton p_w_picpathButton;
 
 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_main);
  
  /*
   * 1)初始化當前所需控件,如何初始化一個控件?
   * findViewById--返回的是一個View對象
   * findViewById如何查找對應的view的id
   * 2)設置Button的監聽器,通過監聽器實現我們點擊Button要操作的事情
   */
  loginButton = (Button) findViewById(R.id.button1);
  p_w_picpathButton = (ImageButton) findViewById(R.id.p_w_picpathButton1);
  //監聽事件通過第一種方式實現(匿名內部類)
  /*loginButton.setOnClickListener(new OnClickListener() {
   
   @Override
   public void onClick(View v) {
    //在當前onClick方法中監聽點擊Button的動作
    System.out.println("匿名內部類事件的監聽事件");
   }
  });*/
  //監聽事件通過第二種方式實現(獨立類實現)
  /*loginButton.setOnClickListener(listener);*/
  
  //監聽事件通過第三種方式實現(接口實現)
  //先實現一個接口 implements OnClickListener
  p_w_picpathButton.setOnClickListener(this);
  
 }
 @Override
 public void onClick(View v) {
  Log.i("tag", "接口事件監聽事件");
  
 }
 
 /*OnClickListener listener = new OnClickListener() {
  
  @Override
  public void onClick(View v) {
   //System.out.println("獨立類實現的監聽事件");
   Log.i("tag", "獨立類實現的監聽事件");
  }
 };*/
 
}

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

长乐市| 青海省| 濮阳县| 伊吾县| 泽库县| 桃园县| 呼图壁县| 西盟| 台中市| 延庆县| 祁东县| 缙云县| 垣曲县| 蓬安县| 江油市| 三亚市| 东至县| 泽普县| 康平县| 都匀市| 临洮县| 尉氏县| 区。| 满城县| 荣成市| 铜梁县| 轮台县| 滦平县| 陇西县| 六盘水市| 威信县| 平南县| 固镇县| 沈阳市| 柳林县| 昌图县| 曲水县| 临邑县| 富川| 辽源市| 宁夏|