Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android技術基礎 >> 第25章、OnTouchListener觸摸事件(從零開始學Android)

第25章、OnTouchListener觸摸事件(從零開始學Android)

編輯:Android技術基礎

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

  知識點:OnTouch

  \

 

一、設計界面

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

  \

 

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

  (1)從工具欄向activity拖出1個圖像ImageView、1個文本標簽TextView。

  \

  3、打開activity_main.xml文件。

  代碼如下:

[html] view plain copy  
  1. <RelativeLayout   
  2.     xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:layout_width="match_parent"  
  4.     android:layout_height="match_parent" >  
  5.   
  6.     <ImageView  
  7.         android:id="@+id/picture"  
  8.         android:layout_width="wrap_content"  
  9.         android:layout_height="wrap_content"  
  10.         android:layout_alignParentLeft="true"  
  11.         android:layout_alignParentTop="true"  
  12.         android:src="@drawable/c" />  
  13.   
  14.     <TextView  
  15.         android:id="@+id/info"  
  16.         android:layout_width="wrap_content"  
  17.         android:layout_height="wrap_content"  
  18.         android:layout_alignParentLeft="true"  
  19.         android:layout_below="@+id/picture"  
  20.         android:text="坐標信息" />  
  21.