Android APP设置为Launcher 桌面 onCreate启动两次

Android APP设置为Launcher 桌面 onCreate启动两次

解决方案:

Activity添加configChanges属性

android:configChanges="keyboardHidden|orientation|screenSize|locale|screenLayout|mcc|mnc"

AndroidManifest.xml设置如下:

<activity android:name=".MainActivity"
    android:screenOrientation="portrait"
    android:launchMode="singleTask"
  android:configChanges="keyboardHidden|orientation|screenSize|locale|screenLayout|mcc|mnc">
  
    <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />
        <category android:name="android.intent.category.HOME"/>
<category android:name="android.intent.category.DEFAULT" />  
    </intent-filter>
</activity>

原因是当系统启动并搜索到可用移动网络的时候会触发 config changes : mcc | mnc ,其中

MCC为移动国家号码,由三位数字组成,每个国家都有自己独立的MCC,可以识别手机用户所属国家。

MNC.为移动网号,在一个国家或者地区中,用于区分手机用户的服务商

启动2次解决了,

如果假如你要跳转到另一个Activity,建议也需要添加该属性,不然也会onCreate2次

在使用Flutter中的FlutterActivity时,

因为要播放启动音频,莫名其妙播了2次,打了log,StatefulWidget 的initState竟然调了2次, initState不是只调一次吗…

当时,只想着控制AudioPlaye或者监听LifecycleState,但还是阻挡不住调了2次的结果。

只到我在FlutterActivity中添加了configChanges属性, 原来只在MAinActivity中添加并不能代表所有的Activity都有这个属性,泪奔。。。

参考:

http://www.voidcn.com/article/p-gvaevhvg-bhh.html

https://blog.csdn.net/qhs1573/article/details/42913475

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值