国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 系統(tǒng) > Android > 正文

Android使用WindowManager制作一個(gè)可拖動(dòng)的控件

2019-12-12 05:49:42
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

效果圖如下

第一步:新建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;// 用于可拖動(dòng)的浮動(dòng)窗口 private WindowManager.LayoutParams windowParams;// 浮動(dòng)窗口的參數(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) { // 獲取當(dāng)前點(diǎn)的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;// 這個(gè)必須加 // 得到preview左上角相對(duì)于屏幕的坐標(biāo) windowParams.x = x; windowParams.y = y; // 設(shè)置寬和高 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>

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持武林網(wǎng)。

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 郯城县| 大同县| 米泉市| 新化县| 新和县| 开远市| 乐亭县| 孝感市| 白沙| 乌拉特前旗| 上林县| 永川市| 孝义市| 台湾省| 道孚县| 西乌| 如皋市| 博爱县| 射阳县| 普宁市| 双鸭山市| 娄底市| 宁明县| 灵山县| 宁南县| 洱源县| 丰都县| 荥阳市| 额尔古纳市| 安仁县| 洪洞县| SHOW| 浙江省| 闻喜县| 孟连| 威远县| 绥江县| 龙胜| 夹江县| 清镇市| 遂宁市|