Android悬浮窗口

1、最近在做视频通话功能,用到了悬浮窗。项目代码不能随便上,写一个简单的Demo记录下!更复杂的功能,自由发挥吧!!!

20200602200022.gif

2、废话不说,上代码;

a、权限必须要;

<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />

b、主要业务代码;

import android.content.Context
import android.content.Intent
import android.graphics.PixelFormat
import android.net.Uri
import android.os.Build
import android.os.Bundle
import android.provider.Settings
import android.util.DisplayMetrics
import android.view.Gravity
import android.view.MotionEvent
import android.view.View
import android.view.WindowManager
import androidx.appcompat.app.AppCompatActivity
import kotlinx.android.synthetic.main.activity_main2.*
class Main2Activity : AppCompatActivity() {
    private var mWindowManager: WindowManager? = null
    private var mWindowParams: WindowManager.LayoutParams? = null
    private lateinit var mWindowView: View
    private val mMinWidht = dp2px(100F)
    private val mMinHeight = dp2px(150F)
    private val mMaxWidth = getMaxWidth()
    private val mMaxHeight = getMaxHeight()
    private val mStatusHeight = getStatusHeight()
    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main2)
        btn_1.setOnClickListener {
            if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M && !Settings.canDrawOverlays(this)) {
                startActivity(
                    Intent(
                        Settings.ACTION_MANAGE_OVERLAY_PERMISSION,
                        Uri.parse("package:${packageName}")
                    )
                )
            } else {
                openWindowView()
            }
        }
        btn_2.setOnClickListener {
            mWindowManager?.removeView(mWindowView)
        }
    }


    /**
     * 打开Window窗口
     */
    private fun openWindowView() {
        mWindowManager = getSystemService(Context.WINDOW_SERVICE) as WindowManager
        mWindowParams = WindowManager.LayoutParams()
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
            mWindowParams!!.type = WindowManager.LayoutParams.TYPE_APPLICATION_OVERLAY
        } else {
            mWindowParams!!.type = WindowManager.LayoutParams.TYPE_SYSTEM_ALERT
        }
        mWindowParams?.flags = (WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
                or WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN
                or WindowManager.LayoutParams.FLAG_LAYOUT_INSET_DECOR
                or WindowManager.LayoutParams.FLAG_NOT_TOUCH_MODAL
                or WindowManager.LayoutParams.FLAG_WATCH_OUTSIDE_TOUCH)
        mWindowParams?.format = PixelFormat.TRANSLUCENT
        mWindowParams?.width = mMinWidht
        mWindowParams?.height = mMinHeight
        mWindowParams?.gravity = Gravity.START or Gravity.TOP
        mWindowParams?.x = mMaxWidth - mMinWidht
        mWindowParams?.y = mStatusHeight
        mWindowView = View.inflate(this, R.layout.view_layout_window, null)
        mWindowView.findViewById<View>(R.id.v_event).setOnClickListener {
            /*点击放大、缩小事件*/
            mWindowParams?.width = if (mWindowParams?.width == mMinWidht) mMaxWidth else mMinWidht
            mWindowParams?.height =
                if (mWindowParams?.height == mMinHeight) mMaxHeight else mMinHeight
            mWindowManager!!.updateViewLayout(mWindowView, mWindowParams)
        }
        mWindowView.setOnTouchListener(WindowOnTouchListener())
        mWindowManager!!.addView(mWindowView, mWindowParams)

    }

    /**
     * Window窗口触摸事件
     */
    inner class WindowOnTouchListener : View.OnTouchListener {
        private var mTouchStartX = 0
        private var mTouchStartY = 0
        private var mStartX = 0
        private var mStartY = 0
        override fun onTouch(v: View?, motionEvent: MotionEvent): Boolean {
            val action = motionEvent.action
            val x = motionEvent.x.toInt()
            val y = motionEvent.y.toInt()
            when (action) {
                MotionEvent.ACTION_DOWN -> {
                    mTouchStartX = motionEvent.rawX.toInt()
                    mTouchStartY = motionEvent.rawY.toInt()
                    mStartX = x
                    mStartY = y
                }
                MotionEvent.ACTION_MOVE -> {
                    if (null != mWindowParams && null != mWindowManager) {
                        val mTouchCurrentX = motionEvent.rawX.toInt()
                        val mTouchCurrentY = motionEvent.rawY.toInt()
                        val tempX = mWindowParams!!.x + mTouchCurrentX - mTouchStartX
                        val tempY = mWindowParams!!.y + mTouchCurrentY - mTouchStartY
                        var newX: Int = -1
                        var newY: Int = -1
                        if (tempX >= 0 && tempX <= (mMaxWidth - mMinWidht)) {
                            newX = tempX
                            mTouchStartX = mTouchCurrentX
                        }
                        if (tempY >= mStatusHeight && tempY <= (mMaxHeight - mMinHeight)) {
                            newY = tempY
                            mTouchStartY = mTouchCurrentY
                        }
                        mWindowParams!!.x = if (newX == -1) mWindowParams!!.x else newX
                        mWindowParams!!.y = if (newY == -1) mWindowParams!!.y else newY
                        mWindowManager!!.updateViewLayout(mWindowView, mWindowParams)
                    }
                }
            }
            return true
        }
    }

    /**
     * 屏幕宽度
     */
    private fun getMaxWidth(): Int {
        val windowManager = GitTestApplication.getApplication()
            .getSystemService(Context.WINDOW_SERVICE) as WindowManager
        val outMetrics = DisplayMetrics()
        windowManager.defaultDisplay.getMetrics(outMetrics)
        return outMetrics.widthPixels
    }

    /**
     * 屏幕高度
     */
    private fun getMaxHeight(): Int {
        val windowManager =
            GitTestApplication.getApplication()
                .getSystemService(Context.WINDOW_SERVICE) as WindowManager
        val outMetrics = DisplayMetrics()
        windowManager.defaultDisplay.getMetrics(outMetrics)
        return outMetrics.heightPixels
    }

    /**
     * dp转换为px
     */
    private fun dp2px(dpValue: Float): Int {
        val scale: Float = GitTestApplication.getApplication().resources.displayMetrics.density
        return (dpValue * scale + 0.5f).toInt()
    }

    /**
     * 获取状态栏高度
     */
    private fun getStatusHeight(): Int {
        val resources = GitTestApplication.getApplication().resources
        val resourceId: Int = resources.getIdentifier("status_bar_height", "dimen", "android")
        return resources.getDimensionPixelSize(resourceId)
    }}

c、view_layout_window.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/shape_radius_12_solid_000000">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:text="显示内容"
        android:textColor="#FFFFFFFF"
        android:textSize="18sp"
        android:textStyle="bold" />

    <View
        android:id="@+id/v_event"
        android:layout_width="30dp"
        android:layout_height="30dp"
        android:layout_margin="20dp"
        android:background="@drawable/shape_oval_solid_red_light" />
</RelativeLayout>

d、shape_oval_solid_red_light.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="oval">
    <solid android:color="@android:color/holo_red_light" />
</shape>

e、shape_radius_12_solid_000000.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <corners android:radius="12dp" />
    <solid android:color="#FF000000" />
</shape>

f、activity_main2.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center_horizontal"
    android:orientation="vertical">


    <Button
        android:id="@+id/btn_1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="30dp"
        android:text="打开" />

    <Button
        android:id="@+id/btn_2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="30dp"
        android:text="关闭" />

</LinearLayout>
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,802评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,109评论 2 379
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,683评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,458评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,452评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,505评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,901评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,550评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,763评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,556评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,629评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,330评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,898评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,897评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,140评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,807评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,339评论 2 342