溫馨提示×

溫馨提示×

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

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

OnTouchListener觸摸事件

發(fā)布時(shí)間:2020-06-19 09:20:03 來源:網(wǎng)絡(luò) 閱讀:815 作者:沒有水勒魚 欄目:移動開發(fā)

在AndroidApp應(yīng)用中,OnTouch事件表示觸摸事件,本章我們通過滑過圖像獲取當(dāng)前位置理解其具體用法。

  知識點(diǎn):OnTouch


一、設(shè)計(jì)界面

  1、首先把c.jpg圖片復(fù)制到res/drawable-hdpi文件夾內(nèi)。

OnTouchListener觸摸事件



2、打開“res/layout/activity_main.xml”文件。

 ?。?)從工具欄向activity拖出1個(gè)圖像ImageView、1個(gè)文本標(biāo)簽TextView。

OnTouchListener觸摸事件



3、打開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:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >


    <ImageView
        android:id="@+id/picture"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:src="@drawable/c" />


    <TextView
        android:id="@+id/info"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_below="@+id/picture"
        android:text="@string/info" />


</RelativeLayout>


4、界面如下:

OnTouchListener觸摸事件


二、長按事件 

  打開“src/com.genwoxue.onlongclick/MainActivity.java”文件。

  然后輸入以下代碼:  

package com.example.hw;


import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MotionEvent;
import android.view.View;
import android.view.View.OnTouchListener;
import android.widget.ImageView;
import android.widget.TextView;




public class MainActivity extends Activity {
private ImageView ivwPicture = null;
private TextView tvInfo = null;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
tvInfo = (TextView) findViewById(R.id.info);
ivwPicture = (ImageView) findViewById(R.id.picture);
//注冊O(shè)nTouch監(jiān)聽器
ivwPicture.setOnTouchListener(new OnTouchListener() {

@Override
public boolean onTouch(View v, MotionEvent event) {
// event.getX獲取X坐標(biāo);event.getY()獲?。僮鴺?biāo)
String sInfo = "X="+String.valueOf(event.getX())+"  Y="+String.valueOf(event.getY());
tvInfo.setText(sInfo);
return true;
}
});

}


@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
}


在圖片上不斷滑動,則會顯示其不同的坐標(biāo)位置。

  效果如下:



OnTouchListener觸摸事件


向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI