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

溫馨提示×

溫馨提示×

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

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

Android中怎么實現view隨觸碰滑動效果

發布時間:2021-06-29 15:01:52 來源:億速云 閱讀:139 作者:Leah 欄目:移動開發

Android中怎么實現view隨觸碰滑動效果,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

布局文件里面就是一個Relativelayout中有一個ImageView。如下

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
 xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:tools="http://schemas.android.com/tools"
 android:id="@+id/relativeLayout"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 tools:context="com.xingyi.moveviewwithtouch.MainActivity">
<ImageView
 android:id="@+id/imageView"
 android:layout_width="40dp"
 android:layout_height="40dp"
 android:background="@android:color/black"/>
</RelativeLayout>

Java代碼如下,這里考慮了邊緣位置滑動的效果。如果考慮,在最左邊緣imageView會有一半在屏幕之外,在最右邊緣會縮小,直到看不見。

package com.xingyi.moveviewwithtouch;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.MotionEvent;
import android.view.View;
import android.widget.ImageView;
import android.widget.RelativeLayout;
public class MainActivity extends AppCompatActivity {
 ImageView imageView;
 RelativeLayout relativeLayout;
 int heightRL,widthRL;
 int halfHeight,halfWidth;
 boolean first=true;
 private int widthImg;
 private int heightImg;
 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_main);
  initView();
 }
 //初始化視圖
 private void initView() {
  imageView = (ImageView) findViewById(R.id.imageView);
  relativeLayout = (RelativeLayout) findViewById(R.id.relativeLayout);
  //獲取滑動瞬間位置和點擊瞬間位置,并移動imageview
  relativeLayout.setOnTouchListener(new View.OnTouchListener() {
   @Override
   public boolean onTouch(View view, MotionEvent motionEvent) {
    switch (motionEvent.getAction()) {
     case MotionEvent.ACTION_MOVE:
      moveView(imageView, motionEvent.getX(), motionEvent.getY());
      break;
     case MotionEvent.ACTION_DOWN:
      getWidthAndHeight();
      moveView(imageView, motionEvent.getX(), motionEvent.getY());
      break;
     default:
      break;
    }
    return true;
   }
  });
 }
 //因為不能在初始化視圖時獲得長寬,而每次計算一次長寬又影響性能
 private void getWidthAndHeight(){
  if(first){
   widthRL=relativeLayout.getWidth();
   heightRL=relativeLayout.getHeight();
   widthImg=imageView.getWidth();
   heightImg=imageView.getHeight();
   halfWidth = imageView.getWidth() / 2;//imageView寬度的一半
   halfHeight = imageView.getHeight() / 2;//imageView高度的一半
   first=false;
  }
 }
 //滑動瞬間,將x和y分別作imageView的中心點到relativeLayout最左和頂端距離
 private void moveView(View view, float x, float y) {
  RelativeLayout.LayoutParams params = (RelativeLayout.LayoutParams) view.getLayoutParams();
  //設置水平位置
  if (x < halfWidth) {//左邊緣
   params.leftMargin = 0;//設置imageview到左端距離為0
  } else if (x > widthRL- halfWidth) {
   params.leftMargin = widthRL-widthImg;//設置imageview左端到左端端距離(params.rightMargin的性能非常糟糕)
  } else {
   params.leftMargin = (int) (x - halfWidth);//imageview左端到relativelayout左端距離
  }
  //設置豎直位置
  if (y < halfHeight) {
   params.topMargin = 0;
  } else if (y > heightRL - halfHeight) {
   params.topMargin = heightRL-widthImg;//params.bottomMargin的性能非常糟糕
  } else {
   params.topMargin = (int) (y - halfHeight);
  }
  view.setLayoutParams(params);
 }
}

關于Android中怎么實現view隨觸碰滑動效果問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

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

AI

木里| 乌兰浩特市| 宽甸| 胶南市| 班玛县| 门头沟区| 武义县| 河南省| 汉沽区| 中山市| 来凤县| 莱州市| 太原市| 聂拉木县| 宁陕县| 自贡市| 新津县| 宁都县| 翁牛特旗| 绿春县| 阿拉善左旗| 闽清县| 湟中县| 白城市| 连山| 乌审旗| 巩义市| 遂宁市| 阳朔县| 泸水县| 扶绥县| 五指山市| 贵阳市| 揭西县| 五河县| 多伦县| 临汾市| 塔城市| 墨竹工卡县| 东源县| 海门市|