AOP in the HarmonyOS Architecture
Introduction to AOP
For developers familiar with Android or Java Web development, the concept of Aspect-Oriented Programming (AOP) is well-established. The core of AOP lies in identifying an aspect and then performing pre-processing or post-processing on a specific business operation, or even replacing the operation entirely. The granularity of ...
Posted on Thu, 16 Jul 2026 16:26:55 +0000 by gtibok
HarmonyOS ArkUI Combined Gesture Events
Gesture Type
Functionality
Swipe
Fast screen swiping for page navigation and content scrolling
Tap
Single touch for button activation and app launching
Double Tap
Two quick touches for zooming images or opening apps
Long Press
Sustained touch for context menus and drag operations
Pinch
Two-finger movement for zooming and scaling
...
Posted on Tue, 14 Jul 2026 17:03:54 +0000 by ShadowMetis
Implementing Persistent Worker Threads in HarmonyOS
In HarmonyOS, while TaskPool is ideal for short-lived, independent tasks, scenarios requiring long-lived state or persistent object handles often necessitate the use of Worker threads. Unlike TaskPool, which manages task lifecycles automatically, Worker allows for maintaining a single, consistent execution context.
Creating and Managing a Worke ...
Posted on Mon, 13 Jul 2026 16:51:23 +0000 by Merdok
HarmonyOS Node-API Lifecycle and Error Diagnosis Patterns
Distinguishing Lifetimes of napi_value and napi_ref
napi_value instances are automatically tracked and retained within the current HandleScope. Explicit scope management is typically unnecessary—except in asynchronous completion callbacks (e.g., those invoked after uv_queue_work). In such contexts, a dedicated HandleScope must be establisehd b ...
Posted on Mon, 06 Jul 2026 17:48:21 +0000 by indian98476
Building Grid Layouts in HarmonyOS with Grid and GridItem
To create responsive grid layouts in HarmonyOS, developers use the Grid container along with GridItem children. This approach supports flexible sizing, spacing, direction control, and even pagination.
Defining Rows and Columns with Templates
The structure of a grid is defined using rowsTemplate and columnsTemplate, which accept CSS-like fractio ...
Posted on Wed, 01 Jul 2026 17:59:05 +0000 by aka_bigred
Managing Application Context in HarmonyOS Stage Model
Overview of Context TypesIn the HarmonyOS Stage model, Context provides access to application resources, paths, and configurations. Several specialized context classes inherit from the base Context class, including ApplicationContext, AbilityStageContext, UIAbilityContext, and ExtensionContext. These subclasses provide specific capabilities whi ...
Posted on Thu, 25 Jun 2026 17:40:44 +0000 by thewomb
Implementing Tab Navigation in HarmonyOS Applications
Bottom Navigation Bar
@Entry
@Component
struct MainScreen {
build() {
Column() {
Tabs({ barPosition: BarPosition.End }) {
TabContent() {
Text('Home Screen').fontSize(30)
}.tabBar('Home')
TabContent() {
Text('Discovery Screen').fontSize(30)
}.tabBar('Discovery')
TabContent ...
Posted on Tue, 23 Jun 2026 17:09:58 +0000 by rich1983
HarmonyOS ArkUI Text and Span Styling with Advanced Layout Controls
The textCase property enforces consistent capitalization of text content, regardless of the original string.
@Entry
@Component
struct TextCaseExample {
build() {
Column() {
Text("Original Text")
.textCase(TextCase.UpperCase)
.padding(10)
.border({ width: 1 })
Text("Original Text")
...
Posted on Tue, 23 Jun 2026 16:44:07 +0000 by solar_ninja
Styling and Implementing Buttons in HarmonyOS ArkUI
Creating a Circular Button
A circular button can be created by setting the ButtonType to Circle.
Button('Circle', { type: ButtonType.Normal, stateEffect: false })
.backgroundColor(0x317aff)
.width(90)
.height(90)
Note: The borderRadius property cannot be used to override the shape of a Circle type button.
Customizing Button Appearance
Va ...
Posted on Sat, 20 Jun 2026 16:52:25 +0000 by xsaero00
Text and Span Components in HarmonyOS ArkUI
In HarmonyOS ArkUI, the Text component serves as a container for displaying text content, while the Span component allows for styling specific portions of text within a Text container. The key distinction is that Text provides the overall container and layout properties, whereas Span enables granular text formatting within that container.
Text ...
Posted on Mon, 15 Jun 2026 17:57:03 +0000 by olidenia