Android基礎知識之單點觸摸_Android

來源:互聯網
上載者:User

相對於多點觸摸,單點觸摸還是很簡單的。
建立一個工程,先看看布局檔案:

<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="com.example.touchevent.MainActivity" > <ImageView android:id="@+id/iv" android:layout_width="match_parent" android:layout_height="match_parent" android:src="@drawable/jiafeimao" android:scaleType="matrix" /></RelativeLayout>

就一個簡單的ImageView,一會我們將在Activity中移動這個ImageView:

public class MainActivity extends Activity { private ImageView iv; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); iv = (ImageView) this.findViewById(R.id.iv); iv.setOnTouchListener(new OnTouchListener() {  private float x;  private float y;  // 用來操作圖片的模型  private Matrix oldMatrix = new Matrix();  private Matrix newMatrix = new Matrix();  @Override  public boolean onTouch(View v, MotionEvent event) {  switch (event.getAction()) { // 判斷操作類型  case MotionEvent.ACTION_DOWN:   //按下時記住x,y的座標   x = event.getX();   y = event.getY();   oldMatrix.set(iv.getImageMatrix());   break;  case MotionEvent.ACTION_MOVE://移動時   //用另一個模型記住按下時的位置   newMatrix.set(oldMatrix);   //移動模型   newMatrix.setTranslate(event.getX()-x, event.getY()-y);   break;  }  //把圖片放入移動後的模型中  iv.setImageMatrix(newMatrix);  return true;  } }); }}

就是這麼簡單。

原文連結:http://blog.csdn.net/u012702547/article/details/45749107

源碼下載:單點觸摸

以上就是本文的全部內容,希望對大家的學習有所協助,也希望大家多多支援雲棲社區。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.