Home Java javaTutorial Detailed explanation of multi-window solution for Android browser

Detailed explanation of multi-window solution for Android browser

Jan 17, 2017 pm 02:58 PM

Our Android platform is composed of one Activity after another. Each Activity consists of one or more Views.
So, when we want to display an interface, the first thing we think of is to create an Activity, and then all operations are implemented in the Activity, or it is a Dialog or Toast. This method is certainly simple, but in some cases, all we require is simple display, and using Activity is obviously redundant. At this time, how should we deal with it?

An Android application is also a Linux process at the bottom layer, but the concept of process is weakened at the upper layer and abstracts the interaction of Activity. The code directly controls the Activity, and the user's interaction is also the Activity.
Activity is an object abstracted from the perspective of user interaction, and is isolated from the process in concept and use. The process is similar to an adoption function. A process can have multiple activities. It can not only adopt the activity of its current application,
can also adopt the activities specified by other installation packages for the process. If the activity is destroyed, the process will not be destroyed (unless The system requires or code forces the process to be killed).

It turns out that the entire Android window mechanism is based on an interface called WindowManager. This interface can add views to the screen and
can also delete views from the screen. The object it faces is the screen on one end and the View on the other end, directly ignoring our previous Activity
or Dialog and the like. In fact, the underlying implementation of our Activity or Diolog is also through WindowManager. This
WindowManager is global, and the entire system is the only one. It is the bottom layer that displays the View.

Write a simple code:
Java code

WindowManager mWm = (WindowManager)getSystemService(Context.WINDOW_SERVICE);    
Button view = new Button(this);    
view.setText("window manager test!");    
WindowManager.LayoutParams mParams = new WindowManager.LayoutParams();    
mWm.addView(view, mParams);
Copy after login

Generally when you first start developing android, you will make a mistake, that is, get getWidth() and getHeight in the constructor of View (),
When a view object is created, android does not know its size, so the results returned by getWidth() and getHeight() are 0,
The real size is calculated when the layout is calculated, so it will I found an interesting thing, that is, the reason why the length and width can be obtained in onDraw().


Use WindowManager to implement floating windows

       WindowManager.LayoutParams params;
        params = new WindowManager.LayoutParams(
                ViewGroup.LayoutParams.MATCH_PARENT,
                ViewGroup.LayoutParams.WRAP_CONTENT,
                WindowManager.LayoutParams.TYPE_PHONE,//TYPE_APPLICATION,
                WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE,
                PixelFormat.TRANSLUCENT);
        params.gravity = Gravity.TOP;
        manager.addView(tmpView, params);
Copy after login

You can add the View that needs to be added to the floating window to the window:

 if(view.getParent==null)//如果view没有被加入到某个父组件中,则加入WindowManager中
        wManager.addView(view,wmParams);
Copy after login

Among them, view is the view component that needs to be placed in the floating window.

If you want to remove it from WindowManager, you can execute the following statement:

        if(view.getParent()!=null)
        wManager.removeView(view);
Copy after login

In android, you can add multiple windows according to the above method. Problems caused by multiple windows:

2. Application life cycle issues
When other applications appear before the browser's main Activity, no matter how many browser sub-windows pop up in front, the browser's life cycle will enter the onPause state.

For more detailed explanations of multi-window solutions for android browsers, please pay attention to the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Top 4 JavaScript Frameworks in 2025: React, Angular, Vue, Svelte Top 4 JavaScript Frameworks in 2025: React, Angular, Vue, Svelte Mar 07, 2025 pm 06:09 PM

This article analyzes the top four JavaScript frameworks (React, Angular, Vue, Svelte) in 2025, comparing their performance, scalability, and future prospects. While all remain dominant due to strong communities and ecosystems, their relative popul

Spring Boot SnakeYAML 2.0 CVE-2022-1471 Issue Fixed Spring Boot SnakeYAML 2.0 CVE-2022-1471 Issue Fixed Mar 07, 2025 pm 05:52 PM

This article addresses the CVE-2022-1471 vulnerability in SnakeYAML, a critical flaw allowing remote code execution. It details how upgrading Spring Boot applications to SnakeYAML 1.33 or later mitigates this risk, emphasizing that dependency updat

Node.js 20: Key Performance Boosts and New Features Node.js 20: Key Performance Boosts and New Features Mar 07, 2025 pm 06:12 PM

Node.js 20 significantly enhances performance via V8 engine improvements, notably faster garbage collection and I/O. New features include better WebAssembly support and refined debugging tools, boosting developer productivity and application speed.

How do I implement multi-level caching in Java applications using libraries like Caffeine or Guava Cache? How do I implement multi-level caching in Java applications using libraries like Caffeine or Guava Cache? Mar 17, 2025 pm 05:44 PM

The article discusses implementing multi-level caching in Java using Caffeine and Guava Cache to enhance application performance. It covers setup, integration, and performance benefits, along with configuration and eviction policy management best pra

How does Java's classloading mechanism work, including different classloaders and their delegation models? How does Java's classloading mechanism work, including different classloaders and their delegation models? Mar 17, 2025 pm 05:35 PM

Java's classloading involves loading, linking, and initializing classes using a hierarchical system with Bootstrap, Extension, and Application classloaders. The parent delegation model ensures core classes are loaded first, affecting custom class loa

How to Share Data Between Steps in Cucumber How to Share Data Between Steps in Cucumber Mar 07, 2025 pm 05:55 PM

This article explores methods for sharing data between Cucumber steps, comparing scenario context, global variables, argument passing, and data structures. It emphasizes best practices for maintainability, including concise context use, descriptive

Iceberg: The Future of Data Lake Tables Iceberg: The Future of Data Lake Tables Mar 07, 2025 pm 06:31 PM

Iceberg, an open table format for large analytical datasets, improves data lake performance and scalability. It addresses limitations of Parquet/ORC through internal metadata management, enabling efficient schema evolution, time travel, concurrent w

How can I implement functional programming techniques in Java? How can I implement functional programming techniques in Java? Mar 11, 2025 pm 05:51 PM

This article explores integrating functional programming into Java using lambda expressions, Streams API, method references, and Optional. It highlights benefits like improved code readability and maintainability through conciseness and immutability

See all articles