91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

OnTouchListener觸摸事件

發布時間:2020-06-19 09:20:03 來源:網絡 閱讀:817 作者:沒有水勒魚 欄目:移動開發

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

  知識點:OnTouch


一、設計界面

  1、首先把c.jpg圖片復制到res/drawable-hdpi文件夾內。

OnTouchListener觸摸事件



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

  (1)從工具欄向activity拖出1個圖像ImageView、1個文本標簽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);
//注冊OnTouch監聽器
ivwPicture.setOnTouchListener(new OnTouchListener() {

@Override
public boolean onTouch(View v, MotionEvent event) {
// event.getX獲取X坐標;event.getY()獲取Y坐標
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;
}
}


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

  效果如下:



OnTouchListener觸摸事件


向AI問一下細節

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

AI

宜章县| 舟曲县| 吐鲁番市| 西青区| 巨鹿县| 钦州市| 从化市| 和顺县| 通城县| 黔西| 南汇区| 兴仁县| 西乌珠穆沁旗| 聂荣县| 青龙| 海城市| 鄂托克前旗| 西充县| 墨玉县| 望奎县| 平阴县| 博爱县| 丰都县| 河源市| 旺苍县| 马山县| 华安县| 静乐县| 子长县| 永顺县| 宁城县| 枣强县| 遵义县| 乾安县| 绵竹市| 崇礼县| 平舆县| 娱乐| 温州市| 广安市| 英吉沙县|