Android使用WindowManager制作一个可拖动的控件
程序员文章站
2024-03-06 16:38:32
效果图如下
第一步:新建dragview继承relativelayout
package com.rong.activity;
import com....
效果图如下
第一步:新建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;// 浮动窗口的参数 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>
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: JVM垃圾收集器详解
下一篇: Redux原理
推荐阅读
-
Android使用WindowManager制作一个可拖动的控件
-
Android使用WindowManager制作一个可拖动的控件
-
Android编程之控件可拖动的实现方法
-
Android编程之控件可拖动的实现方法
-
使用iOS控件UICollectionView生成可拖动的桌面的实例
-
使用iOS控件UICollectionView生成可拖动的桌面的实例
-
Android自定义控件之可拖动控制的圆环控制条实例代码
-
Android使用gallery和imageSwitch制作可左右循环滑动的图片浏览器
-
Android自定义控件之可拖动控制的圆环控制条实例代码
-
Android使用gallery和imageSwitch制作可左右循环滑动的图片浏览器