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

溫馨提示×

溫馨提示×

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

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

Android中如何實現自定義LineLayout實現滿屏任意拖動功能

發布時間:2020-07-17 14:20:17 來源:億速云 閱讀:288 作者:小豬 欄目:移動開發

小編這次要給大家分享的是Android中如何實現自定義LineLayout實現滿屏任意拖動功能,文章內容豐富,感興趣的小伙伴可以來了解一下,希望大家閱讀完這篇文章之后能夠有所收獲。

1.前言

在開發中,會有需求實現控件在屏幕隨意拖動,這就需要自定義View,然后在OnTouchEvent事件中,處理MotionEvent.ACTION_MOVE事件,然后通過坐標點傳值給onlayout方法,來實現控件的任意拖動,具體代碼如下:

import android.content.Context;
import android.util.AttributeSet;
import android.view.Display;
import android.view.MotionEvent;
import android.view.WindowManager;
import android.widget.LinearLayout;

public class DragLineLayout extends LinearLayout {

 private int mWidth;
 private int mHeight;
 private int mScreenWidth;
 private int mScreenHeight;
 private Context mContext;
 private onLocationListener mLocationListener;/*listen to the Rect */
 //是否拖動
 private boolean isDrag = false;

 public boolean isDrag() {
  return isDrag;
 }

 public DragView(Context context, AttributeSet attrs) {
  super(context, attrs);
  this.mContext = context;
 }

 @Override
 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
  super.onMeasure(widthMeasureSpec, heightMeasureSpec);
  mWidth = getMeasuredWidth();
  mHeight = getMeasuredHeight();
  mScreenWidth = getScreenWidth(mContext);
  mScreenHeight = getScreenHeight(mContext) - getStatusBarHeight();
 }

 public int getStatusBarHeight() {
  int resourceId = mContext.getResources().getIdentifier("status_bar_height", "dimen", "android");
  return mContext.getResources().getDimensionPixelSize(resourceId);
 }

 public int getScreenWidth(Context context) {
  WindowManager manager = (WindowManager) context
    .getSystemService(Context.WINDOW_SERVICE);
  Display display = manager.getDefaultDisplay();
  return display.getWidth();
 }

 public int getScreenHeight(Context context) {
  WindowManager manager = (WindowManager) context
    .getSystemService(Context.WINDOW_SERVICE);
  Display display = manager.getDefaultDisplay();
  return display.getHeight();
 }

 private float mDownX;
 private float mDownY;


 @Override
 public boolean onTouchEvent(MotionEvent event) {
  super.onTouchEvent(event);
  if (this.isEnabled()) {
   switch (event.getAction()) {
    case MotionEvent.ACTION_DOWN:
     isDrag = false;
     mDownX = event.getX();
     mDownY = event.getY();
     break;
    case MotionEvent.ACTION_MOVE:
     final float mXdistance = event.getX() - mDownX;
     final float mYdistance = event.getY() - mDownY;
     int l, r, t, b;
     //當水平或者垂直滑動距離大于10,才算是拖動事件
     if (Math.abs(mXdistance) > 10 || Math.abs(mYdistance) > 10) {
      isDrag = true;
      l = (int) (getLeft() + mXdistance);
      r = l + mWidth;
      t = (int) (getTop() + mYdistance);
      b = t + mHeight;
      //邊界判斷,不讓布局滑出界面
      if (l < 0) {
       l = 0;
       r = l + mWidth;
      } else if (r > mScreenWidth) {
       r = mScreenWidth;
       l = r - mWidth;
      }
      if (t < 0) {
       t = 0;
       b = t + mHeight;
      } else if (b > mScreenHeight) {
       b = mScreenHeight;
       t = b - mHeight;
      }
      //回調移動后的坐標點
      if(mLocationListener!=null){
       mLocationListener.locationRect((l+r)/2,(t+b)/2);
      }
      this.layout(l, t, r, b);
     }
     break;
    case MotionEvent.ACTION_UP:
     setPressed(false);
     break;
    case MotionEvent.ACTION_CANCEL:
     setPressed(false);
     break;
   }
   return true;
  }
  return false;
 }
 public void setLocationListener(onLocationListener LocationListener) {
  this.mLocationListener = LocationListener;
 }
 public interface onLocationListener {
  void locationRect(float locationX, float locationY);
 }
}

2.在代碼中的運用

<com.xinrui.guestservice.view.DragLineLayout 
 xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="@dimen/dp_200"
 android:layout_height="@dimen/dp_110"
 android:orientation="vertical">
 <RelativeLayout
  android:layout_width="match_parent"
  android:layout_height="@dimen/dp_50">
 <EditText
  android:id="@+id/input_edt"
  android:layout_width="match_parent"
  android:layout_height="@dimen/dp_50"
  android:background="@drawable/edit_bg" />
 </RelativeLayout>
 <RelativeLayout
  android:layout_width="match_parent"
  android:layout_height="@dimen/dp_55"
  android:layout_marginTop="@dimen/margin_5"
  android:background="@drawable/paint_bg">

  <TextView
   android:id="@+id/paint_typeface"
   android:layout_width="@dimen/dp_50"
   android:layout_height="@dimen/dp_50"
   android:layout_alignParentLeft="true"
   android:layout_alignParentTop="true"
   android:layout_marginTop="@dimen/margin_5"
   android:background="@drawable/main_selector_write"
   android:clickable="true" />

  <TextView
   android:id="@+id/paint_fontsize"
   android:layout_width="@dimen/dp_50"
   android:layout_height="@dimen/dp_50"
   android:layout_alignParentTop="true"
   android:layout_marginLeft="@dimen/dp_10"
   android:layout_marginTop="@dimen/margin_5"
   android:layout_toRightOf="@id/paint_typeface"
   android:background="@drawable/main_selector_write"
   android:clickable="true" />
 </RelativeLayout>
</com.xinrui.guestservice.view.DragLineLayout>

3.這樣就可以在Activity 加載這個xml 來實現任意拖動功能

看完這篇關于Android中如何實現自定義LineLayout實現滿屏任意拖動功能的文章,如果覺得文章內容寫得不錯的話,可以把它分享出去給更多人看到。

向AI問一下細節

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

AI

玉龙| 婺源县| 鄂托克旗| 景洪市| 丰宁| 博白县| 都昌县| 北安市| 柘荣县| 榆中县| 高雄市| 新干县| 清水河县| 宜州市| 任丘市| 昌宁县| 中阳县| 雷波县| 育儿| 西平县| 天水市| 绥中县| 巢湖市| 苍梧县| 花垣县| 贵州省| 古丈县| 永修县| 洮南市| 东城区| 渭源县| 光山县| 河南省| SHOW| 双桥区| 上犹县| 丰镇市| 永川市| 长子县| 剑川县| 辽阳县|