在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
- <RelativeLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent" >
-
- <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="坐標信息" />
-