欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

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實現(xiàn)淘寶底部圖標導航欄

    Android實現(xiàn)淘寶底部圖標導航欄

    這篇文章主要為大家詳細介紹了Android實現(xiàn)淘寶底部圖標導航欄,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2018-12-12
  • android 多線程技術應用

    android 多線程技術應用

    能夠在屏幕上“實時地顯示”時間的流逝,單線程程序是無法實現(xiàn)的,必須要多線程程序才可以實現(xiàn),即便有些計算機語言可以通過封裝好的類實現(xiàn)這一功能,但從本質上講這些封裝好的類就是封裝了一個線程,具體祥看本文
    2012-12-12
  • Android教你如何發(fā)現(xiàn)APP卡頓的實現(xiàn)

    Android教你如何發(fā)現(xiàn)APP卡頓的實現(xiàn)

    這篇文章主要介紹了Android教你如何發(fā)現(xiàn)APP卡頓的實現(xiàn),文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧
    2020-11-11
  • Android應用中使用ViewPager和ViewPager指示器來制作Tab標簽

    Android應用中使用ViewPager和ViewPager指示器來制作Tab標簽

    這篇文章主要介紹了Android中使用ViewPager和ViewPager指示器來制作Tab標簽的方法,ViewPager指示器ViewPageIndicator是一個開源庫,文中舉了一個仿網易新聞客戶端Tab標簽的例子,需要的朋友可以參考下
    2016-03-03
  • Android系統(tǒng)狀態(tài)欄定制圖標顯示邏輯控制

    Android系統(tǒng)狀態(tài)欄定制圖標顯示邏輯控制

    這篇文章主要為大家介紹了Android系統(tǒng)狀態(tài)欄定制圖標顯示邏輯控制,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進步,早日升職加薪
    2022-10-10
  • Android列表實現(xiàn)(3)_自定義列表適配器思路及實現(xiàn)代碼

    Android列表實現(xiàn)(3)_自定義列表適配器思路及實現(xiàn)代碼

    Android 自定義列表適配器會提供很多的便利;下面的例子為使用自定義的列表適配器來顯示列表,感興趣的朋友可以研究下
    2012-12-12
  • Android實現(xiàn)IM多人員組合的群組頭像

    Android實現(xiàn)IM多人員組合的群組頭像

    這篇文章主要為大家詳細介紹了Android實現(xiàn)IM多人員組合的群組頭像,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2018-10-10
  • Android進度條ProgressBar的實現(xiàn)代碼

    Android進度條ProgressBar的實現(xiàn)代碼

    這篇文章主要為大家詳細介紹了Android進度條ProgressBar的實現(xiàn)代碼,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2017-09-09
  • 詳解Android JNI的基本使用(CMake)

    詳解Android JNI的基本使用(CMake)

    本文介紹了Android JNI的基本使用(CMake),小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧
    2017-12-12
  • 分享一個Android設置圓形圖片的特別方法

    分享一個Android設置圓形圖片的特別方法

    圓形圖片想必是項目開發(fā)中也是不少用的一個知識點吧。那么這里學習一下簡單的制作圓形圖片,這個方法不用于平時的實現(xiàn)方法,有需要的可以參考借鑒。
    2016-09-09

最新評論