HarmonyOS 让app回到后台(桌面)的系统方法

HarmonyOS 让app回到后台(桌面)的系统方法。


HarmonyOS
3天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
FengTianYa
import window from '@ohos.window' 
import { BusinessError } from '@ohos.base'; 
@Entry 
@Component 
struct Page240605161307072 { 
  @State message: string = 'Hello World'; 
  onBackPress() { 
    const context = getContext(this) 
    window.getLastWindow(getContext()).then((data) => { 
      //获取窗口对象 
      let windowClass = data; 
      windowClass.minimize((err: BusinessError) => { 
        const errCode: number = err.code; 
        if (errCode) { 
          console.error('Failed to minimize the window. Cause: ' + JSON.stringify(err)); 
          return; 
        } 
        console.info('Succeeded in minimizing the window.'); 
      }); 
      console.info('Succeeded in obtaining the top window. Data: ' + JSON.stringify(data)); 
    }); 
    return true; 
  } 
  build() { 
    Row() { 
      Column() { 
        Text(this.message) 
          .fontSize(50) 
          .fontWeight(FontWeight.Bold) 
        TextInput() 
      } 
      .width('100%') 
    } 
    .height('100%') 
  } 
}
分享
微博
QQ
微信
回复
3天前
相关问题
HarmonyOS 如何应用后台运行
557浏览 • 1回复 待解决
鸿蒙系统能否禁止app常驻后台
15369浏览 • 1回复 待解决
TextInput在聚焦时如何光标回到起点
2203浏览 • 3回复 待解决
HarmonyOS 退出app方法
212浏览 • 1回复 待解决
如何应用后台持续运行
16891浏览 • 2回复 待解决
APP如何主动返回手机桌面
324浏览 • 1回复 待解决
HarmonyOS 组件如何感知app后台切换
282浏览 • 0回复 待解决
arkTS获取app版本信息方法
733浏览 • 1回复 待解决