国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統 > Android > 正文

Android獲取點擊屏幕的位置坐標

2019-10-22 18:10:40
字體:
來源:轉載
供稿:網友

在Android開發過程中,有時需要獲取觸摸位置的坐標,以便作進一步處理,比如做炫酷的動畫效果,或者響應其他操作。

本文簡單介紹Android中觸屏操作時,觸屏的開始位置、當前位置、結束位置。

布局:

<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"  tools:context="com.example.com.TouchTest" >  <LinearLayout    android:id="@+id/ll_touch"    android:layout_width="match_parent"    android:layout_height="match_parent"    android:orientation="vertical" >    <TextView      android:id="@+id/touch_show_start"      android:layout_width="wrap_content"      android:layout_height="wrap_content"      android:text="@string/hello_world" />    <TextView      android:id="@+id/touch_show"      android:layout_width="wrap_content"      android:layout_height="wrap_content"      android:text="@string/hello_world" />  </LinearLayout></RelativeLayout>

Activity中的操作:

 

public class TouchTest extends Activity implements OnTouchListener {  private TextView tvTouchShowStart;  private TextView tvTouchShow;  private LinearLayout llTouch;  @Override  protected void onCreate(Bundle savedInstanceState) {    super.onCreate(savedInstanceState);    setContentView(R.layout.activity_touch_test);    init();  }  private void init() {    tvTouchShowStart = (TextView) findViewById(R.id.touch_show_start);    tvTouchShow = (TextView) findViewById(R.id.touch_show);    llTouch = (LinearLayout) findViewById(R.id.ll_touch);    llTouch.setOnTouchListener(this);  }  @Override  public boolean onTouch(View v, MotionEvent event) {    switch (event.getAction()) {    /**    * 點擊的開始位置    */    case MotionEvent.ACTION_DOWN:      tvTouchShowStart.setText("起始位置:(" + event.getX() + "," + event.getY());      break;    /**    * 觸屏實時位置    */    case MotionEvent.ACTION_MOVE:      tvTouchShow.setText("實時位置:(" + event.getX() + "," + event.getY());      break;    /**    * 離開屏幕的位置    */    case MotionEvent.ACTION_UP:      tvTouchShow.setText("結束位置:(" + event.getX() + "," + event.getY());      break;    default:      break;    }    /**    * 注意返回值    * true:view繼續響應Touch操作;    * false:view不再響應Touch操作,故此處若為false,只能顯示起始位置,不能顯示實時位置和結束位置    */    return true;  }}

效果圖:

Android,屏幕,坐標

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持VEVB武林網。


注:相關教程知識閱讀請移步到Android開發頻道。
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 茌平县| 勃利县| 弋阳县| 大荔县| 常宁市| 稷山县| 盘山县| 周宁县| 郴州市| 工布江达县| 易门县| 紫阳县| 台中县| 阿拉善右旗| 甘孜县| 恩施市| 西丰县| 维西| 讷河市| 彭水| 曲松县| 七台河市| 隆回县| 藁城市| 宣城市| 刚察县| 砚山县| 罗田县| 安陆市| 兴义市| 万载县| 集贤县| 河间市| 临洮县| 栖霞市| 葵青区| 瑞金市| 榕江县| 克拉玛依市| 长阳| 兴安县|