android WindowManager的简单使用实例详解

 更新时间:2023年08月31日 08:34:33   作者:玲珑·  
这篇文章主要介绍了android WindowManager的简单使用,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下

android WindowManager的简单使用

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools">
    <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
    <uses-permission android:name="android.permission.SYSTEM_OVERLAY_WINDOW" />
    <application
        android:allowBackup="true"
        android:dataExtractionRules="@xml/data_extraction_rules"
        android:fullBackupContent="@xml/backup_rules"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/Theme.App0"
        tools:targetApi="31">
        <activity
            android:name=".MainActivity"
            android:exported="true">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
</manifest>
package com.koala.app0;
import androidx.appcompat.app.AppCompatActivity;
import android.content.Context;
import android.graphics.PixelFormat;
import android.os.Bundle;
import android.view.Gravity;
import android.view.LayoutInflater;
import android.view.View;
import android.view.WindowManager;
import android.widget.Button;
import android.widget.FrameLayout;
import android.widget.ImageView;
public class MainActivity extends AppCompatActivity {
    private static Context context;
    private Button button;
    private View imageView;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        context = getApplication().getApplicationContext();
        button = findViewById(R.id.btn1);
        imageView = LayoutInflater.from(context).inflate(R.layout.png,null);
        button.setOnClickListener(listener);
    }
    private View.OnClickListener listener =  new View.OnClickListener(){
        @Override
        public void onClick(View v) {
            WindowManager.LayoutParams layoutParams = new WindowManager.LayoutParams();
//            layoutParams.format = PixelFormat.RGBA_8888;
            layoutParams.flags = WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE;
//            layoutParams.width = 200;
//            layoutParams.height = 200;
//            layoutParams.type = WindowManager.LayoutParams.TYPE_APPLICATION_OVERLAY;
//            layoutParams.gravity = Gravity.BOTTOM | Gravity.LEFT;
            layoutParams.x = 30;
            layoutParams.y = 40;
            WindowManager windowManager = getWindowManager();
            windowManager.addView(imageView,layoutParams);
        }
    };
    public static Context getContext(){
        return context;
    }
}

到此这篇关于android WindowManager的简单使用的文章就介绍到这了,更多相关android WindowManager使用内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

相关文章

  • 利用Android设计一个倒计时组件

    利用Android设计一个倒计时组件

    在很多电商工作项目中经常有倒计时的场景,比如活动倒计时、抢红包倒计时等等,今天小编就带大家来学习如何利用Android设计倒计时组件,感兴趣的小伙伴一起奥
    2021-09-09
  • Material Design系列之Behavior实现Android知乎首页

    Material Design系列之Behavior实现Android知乎首页

    这篇文章主要为大家详细介绍了Material Design系列之Behavior实现Android知乎首页的相关资料,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2016-09-09
  • android 中ProgressDialog实现全屏效果的示例

    android 中ProgressDialog实现全屏效果的示例

    本篇文章主要介绍了android 中ProgressDialog实现全屏效果的示例,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2017-11-11
  • Android studio实现PopupWindow弹出框效果

    Android studio实现PopupWindow弹出框效果

    这篇文章主要为大家详细介绍了Android studio实现PopupWindow弹出框效果,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2021-10-10
  • Android 抽屉效果的导航菜单实现代码实例

    Android 抽屉效果的导航菜单实现代码实例

    本篇文章主要介绍了Android 抽屉效果的导航菜单实现代码实例,这种侧滑的抽屉效果的菜单很好,有兴趣的可以了解一下。
    2016-12-12
  • Android实现下载进度条效果

    Android实现下载进度条效果

    vivo商店在下载应用的时候,底部有一个圆角矩形的下载进度条,中间有一个进度文字,而且进度和文字交汇的时候,交汇部分的文字会从蓝色边为白色,会有一种一半白色字,一半蓝色字的效果。本文将仿照该样式实现一个
    2021-06-06
  • Android网格布局GridView学习使用

    Android网格布局GridView学习使用

    这篇文章主要为大家详细介绍了Android网格布局GirdView的学习使用,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2017-12-12
  • android计算pad或手机的分辨率/像素/密度/屏幕尺寸/DPI值的方法

    android计算pad或手机的分辨率/像素/密度/屏幕尺寸/DPI值的方法

    本文将介绍手机布局/界面设计/分辨率/密度相关,接下来介绍android计算pad或手机的分辨率像素等等的方法,感兴趣的朋友可以了解下,希望本文可以帮助你
    2013-01-01
  • Android获取网络图片并显示的方法

    Android获取网络图片并显示的方法

    这篇文章主要为大家详细介绍了Android获取网络图片并显示的方法,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2018-11-11
  • Kotlin作用域函数使用示例详细介绍

    Kotlin作用域函数使用示例详细介绍

    作用域函数:是Kotlin标准库中的内联函数,作用在对象上时,执行给定的block代码块。可以在block代码块中通过it,this代表当前对象,进行代码逻辑处理
    2023-02-02

最新评论