//監聽事件的三種寫法:匿名內部類,獨立類監聽按鈕點擊事件 , 實現接口
//strings.xml
創新互聯主營徐州網站建設的網絡公司,主營網站建設方案,成都app軟件開發公司,徐州h5小程序制作搭建,徐州網站營銷推廣歡迎徐州等地區企業咨詢
<?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", "獨立類實現的監聽事件"); } };*/ }
新聞標題:監聽事件的三種寫法
當前地址:http://vcdvsql.cn/article26/pehdjg.html
成都網站建設公司_創新互聯,為您提供品牌網站建設、面包屑導航、自適應網站、企業建站、網站策劃、網站制作
聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯