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

溫馨提示×

溫馨提示×

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

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

Android實現圖片拖動效果

發布時間:2020-09-04 15:16:38 來源:腳本之家 閱讀:117 作者:ganchuanpu 欄目:移動開發

要求:

1.通過手指移動來拖動圖片 

2.控制圖片不能超出屏幕顯示區域

技術點:

1.MotionEvent處理

2.對View進行動態定位(layout)

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" >
 <ImageView
  android:id="@+id/iv_main"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:src="@drawable/test"/>
</RelativeLayout>

MainActivity:

public class MainActivity extends Activity implements OnTouchListener {
 private ImageView iv_main;
 private RelativeLayout parentView;
 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_main);
  iv_main = (ImageView) findViewById(R.id.iv_main);
  parentView = (RelativeLayout) iv_main.getParent();
  /*
  int right = parentView.getRight(); //0
  int bottom = parentView.getBottom(); //0
  Toast.makeText(this, right+"---"+bottom, 1).show();
  */
  //設置touch監聽
  iv_main.setOnTouchListener(this);
 }
 private int lastX;
 private int lastY;
 private int maxRight;
 private int maxBottom;
 @Override
 public boolean onTouch(View v, MotionEvent event) {
  //得到事件的坐標
  int eventX = (int) event.getRawX();
  int eventY = (int) event.getRawY();
  switch (event.getAction()) {
  case MotionEvent.ACTION_DOWN:
   //得到父視圖的right/bottom
   if(maxRight==0) {//保證只賦一次值
    maxRight = parentView.getRight();
    maxBottom = parentView.getBottom();
   }
   //第一次記錄lastX/lastY
   lastX =eventX;
   lastY = eventY;
   break;
  case MotionEvent.ACTION_MOVE:
   //計算事件的偏移
   int dx = eventX-lastX;
   int dy = eventY-lastY;
   //根據事件的偏移來移動imageView
   int left = iv_main.getLeft()+dx;
   int top = iv_main.getTop()+dy;
   int right = iv_main.getRight()+dx;
   int bottom = iv_main.getBottom()+dy;
   //限制left >=0
   if(left<0) {
    right += -left;
    left = 0;
   }
   //限制top
   if(top<0) {
    bottom += -top;
    top = 0;
   }
   //限制right <=maxRight
   if(right>maxRight) {
    left -= right-maxRight;
    right = maxRight;
   }
   //限制bottom <=maxBottom
   if(bottom>maxBottom) {
    top -= bottom-maxBottom;
    bottom = maxBottom;
   }
   iv_main.layout(left, top, right, bottom);
   //再次記錄lastX/lastY
   lastX = eventX;
   lastY = eventY;
   break;
  default:
   break;
  }
  return true;//所有的motionEvent都交給imageView處理
 }
}

以上就是本文的全部內容,希望本文的內容對大家的學習或者工作能帶來一定的幫助,同時也希望多多支持億速云!

向AI問一下細節

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

AI

万荣县| 衡水市| 铜山县| 丽江市| 长阳| 凯里市| 澳门| 宜春市| 东港市| 翁牛特旗| 民勤县| 丘北县| 金华市| 兴仁县| 襄樊市| 阿城市| 隆昌县| 张家口市| 天水市| 怀远县| 韩城市| 图片| 积石山| 临漳县| 昌邑市| 竹溪县| 安仁县| 福鼎市| 平邑县| 海安县| 兴安县| 阿巴嘎旗| 宣化县| 崇信县| 大埔县| 安徽省| 阿克| 封开县| 大宁县| 泾源县| 泰兴市|