Android使用WindowManager制作一個可拖動的控件
更新時間:2016年08月02日 16:35:38 投稿:lijiao
這篇文章主要為大家詳細介紹了Android使用WindowManager制作一個可拖動的控件的相關資料,感興趣的小伙伴們可以參考一下
效果圖如下
第一步:新建DragView繼承RelativeLayout
package com.rong.activity; import com.rong.test.R; import android.content.Context; import android.graphics.Color; import android.graphics.PixelFormat; import android.util.AttributeSet; import android.view.Gravity; import android.view.MotionEvent; import android.view.View; import android.view.WindowManager; import android.widget.Button; import android.widget.RelativeLayout; public class DragView extends RelativeLayout { private WindowManager windowManager;// 用于可拖動的浮動窗口 private WindowManager.LayoutParams windowParams;// 浮動窗口的參數(shù) private Button myButton; public DragView(Context context, AttributeSet attrs) { super(context, attrs); init(); } private void init() { View.inflate(getContext(), R.layout.layout_my, this); myButton = new Button(getContext()); myButton.setText("我的"); myButton.setBackgroundColor(Color.RED); } @Override public boolean onTouchEvent(MotionEvent event) { // 獲取當前點的xy位置 int currentX = (int) event.getX(); int currentY = (int) event.getY(); switch (event.getAction()) { case MotionEvent.ACTION_DOWN: if (windowManager == null) { setWindowParams(currentX, currentY); windowManager = (WindowManager) getContext().getSystemService(Context.WINDOW_SERVICE); windowManager.addView(myButton, windowParams); } break; case MotionEvent.ACTION_MOVE: windowParams.x = currentX; windowParams.y = currentY; windowManager.updateViewLayout(myButton, windowParams); break; case MotionEvent.ACTION_UP: // windowManager.removeView(myButton); break; } return true; } private void setWindowParams(int x, int y) { // 建立item的縮略圖 windowParams = new WindowManager.LayoutParams(); windowParams.gravity = Gravity.TOP | Gravity.LEFT;// 這個必須加 // 得到preview左上角相對于屏幕的坐標 windowParams.x = x; windowParams.y = y; // 設置寬和高 windowParams.width = 200; windowParams.height = 200; windowParams.flags = WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE | WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE | WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON | WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN; windowParams.format = PixelFormat.TRANSLUCENT; windowParams.windowAnimations = 0; } }
第二步:新建布局文件activity_main.xml
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/main_touchlayout" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#ffffff" android:orientation="vertical" > <com.rong.activity.DragView android:id="@+id/main_touchview" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_centerInParent="true" android:background="#ff0000" /> </RelativeLayout>
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。
相關文章
Android教你如何發(fā)現(xiàn)APP卡頓的實現(xiàn)
這篇文章主要介紹了Android教你如何發(fā)現(xiàn)APP卡頓的實現(xiàn),文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧2020-11-11Android應用中使用ViewPager和ViewPager指示器來制作Tab標簽
這篇文章主要介紹了Android中使用ViewPager和ViewPager指示器來制作Tab標簽的方法,ViewPager指示器ViewPageIndicator是一個開源庫,文中舉了一個仿網易新聞客戶端Tab標簽的例子,需要的朋友可以參考下2016-03-03Android系統(tǒng)狀態(tài)欄定制圖標顯示邏輯控制
這篇文章主要為大家介紹了Android系統(tǒng)狀態(tài)欄定制圖標顯示邏輯控制,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進步,早日升職加薪2022-10-10Android列表實現(xiàn)(3)_自定義列表適配器思路及實現(xiàn)代碼
Android 自定義列表適配器會提供很多的便利;下面的例子為使用自定義的列表適配器來顯示列表,感興趣的朋友可以研究下2012-12-12Android進度條ProgressBar的實現(xiàn)代碼
這篇文章主要為大家詳細介紹了Android進度條ProgressBar的實現(xiàn)代碼,具有一定的參考價值,感興趣的小伙伴們可以參考一下2017-09-09