harmony 鸿蒙Application Window Development (FA Model)
Application Window Development (FA Model)
Basic Concepts
Immersive window: a window display mode where the system windows (generally the status bar and navigation bar) are hidden to allow users to fully engage with the content.
The immersive window feature is applicable only to the main window of an application in full-screen mode. It does not apply to a main window in any other mode or a child window (for example, a dialog box or a floating window).
NOTE
Currently, immersive UI development supports window-level configuration, but not page-level configuration. If page redirection is required, you can set the immersive mode at the beginning of the page lifecycle, for example, in the onPageShow callback, and then restore the default settings when the page exits, for example, in the onPageHide callback.
When to Use
In the FA model, you can perform the following operations during application window development:
Setting the properties and content of the child window of an application
Experiencing the immersive window feature
Available APIs
The table below lists the common APIs used for application window development. For details about more APIs, see Window.
Instance | API | Description |
---|---|---|
Window static method | createWindow(config: Configuration, callback: AsyncCallback<Window>): void | Creates a child window. config: parameters used for creating the window. |
Window static method | findWindow(name: string): Window | Finds a window based on the name. |
Window | setUIContent(path: string, callback: AsyncCallback<void>): void | Loads the content of a page, with its path in the current project specified, to this window. path: path of the page from which the content will be loaded. The path is configured in the config.json file of the project in the FA model. |
Window | moveWindowTo(x: number, y: number, callback: AsyncCallback<void>): void | Moves this window. |
Window | setWindowBrightness(brightness: number, callback: AsyncCallback<void>): void | Sets the brightness for this window. |
Window | resize(width: number, height: number, callback: AsyncCallback<void>): void | Changes the window size. |
Window | setWindowLayoutFullScreen(isLayoutFullScreen: boolean): Promise<void> | Sets whether to enable the full-screen mode for the window layout. |
Window | setWindowSystemBarEnable(names: Array<‘status’|‘navigation’>): Promise<void> | Sets whether to display the status bar and navigation bar in this window. |
Window | setWindowSystemBarProperties(systemBarProperties: SystemBarProperties): Promise<void> | Sets the properties of the status bar and navigation bar in this window. systemBarProperties: properties of the status bar and navigation bar. |
Window | showWindow(callback: AsyncCallback<void>): void | Shows this window. |
Window | on(type: ‘touchOutside’, callback: Callback<void>): void | Enables listening for touch events outside this window. |
Window | destroyWindow(callback: AsyncCallback<void>): void | Destroys this window. |
Setting the Child Window of an Application
You can create a child window, such as a dialog box, and set its properties.
NOTE
Due to the following limitations, using child windows is not recommended in mobile device scenarios. Instead, you are advised to use the overlay capability of components. - Child windows on mobile devices are constrained within the main window’s boundaries, mirroring the limitations of components. - In split-screen or freeform window mode, components, when compared with child windows, offer better real-time adaptability to changes in the main window’s position and size. - On certain platforms, system configurations may restrict child windows to default system animations and rounded shadows, offering no customization options for applications and thereby limiting their versatility.
How to Develop
Create or obtain a child window.
- Call window.createWindow to create a child window.
- Call window.findWindow to find an available child window.
import { window } from '@kit.ArkUI';
import { BusinessError } from '@kit.BasicServicesKit';
let windowClass: window.Window|null = null;
// Method 1: Create a child window.
let config: window.Configuration = { name: "subWindow", windowType: window.WindowType.TYPE_APP };
window.createWindow(config, (err: BusinessError, data) => {
let errCode: number = err.code;
if (errCode) {
console.error(`Failed to create the subWindow. Code:${err.code}, message:${err.message}`);
return;
}
console.info('Succeeded in creating subWindow. Data: ' + JSON.stringify(data));
windowClass = data;
});
// Method 2: Find a child window.
try {
windowClass = window.findWindow('subWindow');
} catch (exception) {
console.error('Failed to find the Window. Cause: ' + JSON.stringify(exception));
}
- Set the properties of the child window.
After the child window is created, you can set its properties, such as the size, position, background color, and brightness.
// Move the child window.
let windowClass: window.Window = window.findWindow("test");
windowClass.moveWindowTo(300, 300, (err: BusinessError) => {
let errCode: number = err.code;
if (errCode) {
console.error('Failed to move the window. Cause:' + JSON.stringify(err));
return;
}
console.info('Succeeded in moving the window.');
});
// Change the size of the child window.
windowClass.resize(500, 500, (err: BusinessError) => {
let errCode: number = err.code;
if (errCode) {
console.error('Failed to change the window size. Cause:' + JSON.stringify(err));
return;
}
console.info('Succeeded in changing the window size.');
});
- Load content to and show the child window.
Call setUIContent to load content to the child window and showWindow to show the child window.
// Load content to the child window.
let windowClass: window.Window = window.findWindow("test");
windowClass.setUIContent("pages/page2", (err: BusinessError) => {
let errCode: number = err.code;
if (errCode) {
console.error('Failed to load the content. Cause: ' + JSON.stringify(err));
return;
}
console.info('Succeeded in loading the content.');
// Show the child window.
windowClass.showWindow((err: BusinessError) => {
let errCode: number = err.code;
if (errCode) {
console.error('Failed to show the window. Cause: ' + JSON.stringify(err));
return;
}
console.info('Succeeded in showing the window.');
});
});
- Destroy the child window.
When the child window is no longer needed, you can call destroyWindow to destroy it.
// Call destroy() to destroy the child window when it is no longer needed.
let windowClass: window.Window = window.findWindow("test");
windowClass.destroyWindow((err: BusinessError) => {
let errCode: number = err.code;
if (errCode) {
console.error('Failed to destroy the subwindow. Cause:' + JSON.stringify(err));
return;
}
console.info('Succeeded in destroying the subwindow.');
});
Experiencing the Immersive Window Feature
To create a better video watching and gaming experience, you can use the immersive window feature to hide the status bar and navigation bar. This feature is available only for the main window of an application. Since API version 10, the immersive window has the same size as the full screen by default; its layout is controlled by the component module; the background color of its status bar and navigation bar is transparent, and the text color is black. When an application window calls setWindowLayoutFullScreen, with true passed in, an immersive window layout is used. If false is passed in, a non-immersive window layout is used.
How to Develop
- Obtain the main window.
NOTE
The immersive window feature can be implemented only after the main window is obtained.
Ensure that the top window of the application is the main window. You can use window.getLastWindow to obtain the main window.
import { window } from '@kit.ArkUI';
import { BusinessError } from '@kit.BasicServicesKit';
let mainWindowClass: window.Window|null = null;
// Obtain the main window.
class BaseContext {
stageMode: boolean = false;
}
let context: BaseContext = { stageMode: false };
window.getLastWindow(context, (err: BusinessError, data) => {
let errCode: number = err.code;
if (errCode) {
console.error('Failed to get the subWindow. Cause: ' + JSON.stringify(err));
return;
}
console.info('Succeeded in getting subWindow. Data: ' + JSON.stringify(data));
mainWindowClass = data;
});
Implement the immersive effect. You can use either of the following methods:
- Method 1: When the main window of the application is a full-screen window, call setWindowSystemBarEnable to hide the status bar and navigation bar.
- Method 2: Call setWindowLayoutFullScreen to enable the full-screen mode for the main window layout. Call setWindowSystemBarProperties to set the opacity, background color, text color, and highlighted icon of the status bar and navigation bar to create a display effect consistent with that of the main window.
// Implement the immersive effect by hiding the status bar and navigation bar.
let names: Array<'status'|'navigation'> = [];
let mainWindowClass: window.Window = window.findWindow("test");
mainWindowClass.setWindowSystemBarEnable(names)
.then(() => {
console.info('Succeeded in setting the system bar to be visible.');
})
.catch((err: BusinessError) => {
console.error('Failed to set the system bar to be visible. Cause:' + JSON.stringify(err));
});
// Implement the immersive effect by setting the properties of the status bar and navigation bar.
let isLayoutFullScreen: boolean = true;
mainWindowClass.setWindowLayoutFullScreen(isLayoutFullScreen)
.then(() => {
console.info('Succeeded in setting the window layout to full-screen mode.');
})
.catch((err: BusinessError) => {
console.error('Failed to set the window layout to full-screen mode. Cause:' + JSON.stringify(err));
});
let sysBarProps: window.SystemBarProperties = {
statusBarColor: '#ff00ff',
navigationBarColor: '#00ff00',
// The following properties are supported since API version 8.
statusBarContentColor: '#ffffff',
navigationBarContentColor: '#ffffff'
};
mainWindowClass.setWindowSystemBarProperties(sysBarProps)
.then(() => {
console.info('Succeeded in setting the system bar properties.');
})
.catch((err: BusinessError) => {
console.error('Failed to set the system bar properties. Cause: ' + JSON.stringify(err));
});
- Load content to and show the immersive window.
Call setUIContent to load content to the immersive window and showWindow to show the window.
// Load content to the immersive window.
let mainWindowClass: window.Window = window.findWindow("test");
mainWindowClass.setUIContent("pages/page3", (err: BusinessError) => {
let errCode: number = err.code;
if (errCode) {
console.error('Failed to load the content. Cause: ' + JSON.stringify(err));
return;
}
console.info('Succeeded in loading the content.');
// Show the immersive window.
mainWindowClass.showWindow((err: BusinessError) => {
let errCode: number = err.code;
if (errCode) {
console.error('Failed to show the window. Cause: ' + JSON.stringify(err));
return;
}
console.info('Succeeded in showing the window.');
});
});
你可能感兴趣的鸿蒙文章
harmony 鸿蒙Application Window Development (Stage Model)
harmony 鸿蒙Using NativeWindowEventFilter to Filter Multimodal Input Events (C/C++)
harmony 鸿蒙System Window Development (Stage Model Only)
harmony 鸿蒙WindowExtensionAbility (for System Applications Only)
- 所属分类: 后端技术
- 本文标签:
热门推荐
-
2、 - 优质文章
-
3、 gate.io
-
8、 golang
-
9、 openharmony
-
10、 Vue中input框自动聚焦