成人视屏在线观看-国产99精品-国产精品1区2区-欧美一级在线观看-国产一区二区日韩-色九九九

您的位置:首頁技術文章
文章詳情頁

詳解Android 進程

瀏覽:90日期:2022-09-22 18:41:25

多進程

如果需要的時候,app可以創建多進程。

在進程里面

各類組件元素的清單文件條目 、 、 和— 均支持 android:process 屬性,此屬性可以指定該組件應在哪個進程運行。

默認進程就是主進程。其他進程一般來說都是子進程。

2個activity在不同的進程里面,可以刷新UI嗎?

<activity android:name='.androidsample.ActivityProgressB' android:process=':progressb'/>

測試結果:ActivityProgressB可以正常顯示。這個其實很好理解,如果你打開系統相機頁面,那個activity肯定與你的app不再一個進程,但是他可以很順利的打開,所以可以支持。

保活

OOM_ADJ

詳解Android 進程

這個就是oom 回kill進程的優先級。

進程kill的方式

場景 接口 范圍 LowMemoryKiller LowMemoryKiller 從進程的優先級依次kill,釋放內存 三方kill(無root) killbackgroundprogersss kill oom_adj>4 三方kill(有root) forcestop or kill 理論上所有,一般是非系統和可見進程 廠商kill功能 force stop or kill 理論上所有,包括native

進程保活的目的,就是提供進程的優先級,降低進程被kill的概率。

保活的套路

開啟1個像素的activity

2020-08-14 14:29:48.630 1164-8504/system_process W/ActivityTaskManager: Background activity start [callingPackage: com.demanmath.androidms; callingUid: 10398; isCallingUidForeground: false; isCallingUidPersistentSystemProcess: false; realCallingUid: 10398; isRealCallingUidForeground: false; isRealCallingUidPersistentSystemProcess: false; originatingPendingIntent: null; isBgStartWhitelisted: false; intent: Intent { flg=0x10000000 cmp=com.demanmath.androidms/.androidsample.LiveActivity }; callerApp: ProcessRecord{a168b71 2429:com.demanmath.androidms/u0a398}]

在android Q以后,不允許后臺進程啟動后臺頁面了。也就是想啟動一個前臺頁面

使用前臺服務

package com.demanmath.androidms.androidsampleimport android.annotation.TargetApiimport android.app.Notificationimport android.app.NotificationChannelimport android.app.NotificationManagerimport android.app.Serviceimport android.content.Contextimport android.content.Intentimport android.os.Buildimport android.os.Handlerimport android.os.IBinderimport androidx.core.app.NotificationCompatimport com.demanmath.androidms.AppLogimport com.demanmath.androidms.R/** * @author DemanMath * @date 2020/8/14 * */class KeepLiveService:Service() { val NOTIFICATION_ID = 0x11 val NOTIFICATION_CHANNEL_ID = 'demanmathId' val channelName = 'My Background Service' companion object { const val NOTIFICATION_ID = 0x11 } override fun onBind(intent: Intent?): IBinder? { return null } override fun onCreate() { super.onCreate() if (Build.VERSION.SDK_INT < Build.VERSION_CODES.O) { startForeground(NOTIFICATION_ID, Notification()) } else { startMyOwnForeground() startService(Intent(this, InnerService::class.java)) } } @TargetApi(value = Build.VERSION_CODES.O) private fun startMyOwnForeground() { AppLog.d() val chan = NotificationChannel( NOTIFICATION_CHANNEL_ID, channelName, NotificationManager.IMPORTANCE_NONE ) chan.lockscreenVisibility = Notification.VISIBILITY_PRIVATE val manager = (getSystemService(Context.NOTIFICATION_SERVICE) as NotificationManager) manager.createNotificationChannel(chan) val notificationBuilder = NotificationCompat.Builder(this, NOTIFICATION_CHANNEL_ID) val notification = notificationBuilder.setOngoing(true) .setSmallIcon(R.drawable.ic_launcher_background) .setContentTitle('App is running in background') .setPriority(NotificationManager.IMPORTANCE_MIN) .setCategory(Notification.CATEGORY_SERVICE) .build() startForeground(NOTIFICATION_ID, notification) } class InnerService : Service() { override fun onBind(intent: Intent): IBinder? { return null } override fun onCreate() { super.onCreate() //使用channeId & channelName //發送與KeepLiveService中ID相同的Notification,然后將其取消并取消自己的前臺顯示// val builder: Notification.Builder = Notification.Builder(this)// builder.setSmallIcon(R.mipmap.ic_launcher)// startForeground(NOTIFICATION_ID, builder.build()) Handler().postDelayed(Runnable {stopForeground(true)val manager = getSystemService(Context.NOTIFICATION_SERVICE) as NotificationManagermanager.cancel(NOTIFICATION_ID)stopSelf() }, 100) } }}

但是androidQ開始以后,禁止后臺進程開啟前臺進程,這個也是android為了省電考慮的。

多進程相互喚醒

這個就是每個app,其多個進程,如果比kill掉了,可以通過另一個喚起。從上面的前臺service的功效有些類似。

同樣的問題,android Q以后無效。

JobSchedule

package com.demanmath.androidms.jobserviceimport android.app.job.JobParametersimport android.app.job.JobServiceimport android.content.Intentimport android.os.Handlerimport android.os.Messageimport android.widget.Toastimport com.demanmath.androidms.AppLog/** * @author DemanMath * @date 2020/8/20 * */class JobDemoService:JobService() { override fun onCreate() { super.onCreate() AppLog.i() } override fun onStartCommand(intent: Intent?, flags: Int, startId: Int): Int { AppLog.i() return super.onStartCommand(intent, flags, startId) } private var mHandler = object:Handler(){ override fun handleMessage(msg: Message) { AppLog.i() Toast.makeText(applicationContext,'JobService task running', Toast.LENGTH_SHORT ).show() //請注意,我們手動調用了jobFinished方法。 //當onStartJob返回true的時候,我們必須手動調用jobFinished方法 //否則該應用中的其他job將不會被執行 jobFinished(msg.obj as JobParameters, false) } } override fun onStartJob(params: JobParameters?): Boolean { AppLog.i() mHandler.sendMessage(Message.obtain(mHandler,1,params)) return true } override fun onStopJob(params: JobParameters?): Boolean { AppLog.i() mHandler.removeMessages(1) return false }}

package com.demanmath.androidms.jobserviceimport android.app.job.JobInfoimport android.app.job.JobSchedulerimport android.content.ComponentNameimport android.content.Contextimport com.demanmath.androidms.AppLog/** * @author DemanMath * @date 2020/8/20 * */class JobHelper(var context: Context) { lateinit var jobScheduler:JobScheduler fun startJob(){ AppLog.i() jobScheduler = context.getSystemService(Context.JOB_SCHEDULER_SERVICE) as JobScheduler var builder = JobInfo.Builder(1, ComponentName(context.packageName,JobDemoService::class.java.name))// builder.setBackoffCriteria(1000L,JobInfo.BACKOFF_POLICY_LINEAR) var boolean = jobScheduler.schedule(builder.build()) AppLog.i(boolean.toString()) }}

以上就是詳解Android 進程的詳細內容,更多關于Android 進程的資料請關注好吧啦網其它相關文章!

標簽: Android
相關文章:
主站蜘蛛池模板: 狠狠色丁香婷婷久久综合考虑 | 久久久国产99久久国产首页 | 九九精品视频一区二区三区 | 欧美久在线观看在线观看 | 久久久久久久性潮 | 99久久国产综合精品成人影院 | 国产精品视频免费一区二区三区 | 中文毛片 | 国产成人盗拍精品免费视频 | 国产精品九九久久一区hh | 国产亚洲一区呦系列 | 日本三级香港三级人妇gg在线 | 一本色道久久综合亚洲精品高清 | 国产三区视频在线观看 | 波多野结衣在线看片 | 特级毛片全部免费播放a一级 | 人成在线免费视频 | 欧美高清性刺激毛片 | 欧美日一区 | 欧美特黄一级高清免费的香蕉 | 中国一级毛片特级毛片 | 亚洲精品国产啊女成拍色拍 | 69中国xxxxxxxx18| 欧美日韩生活片 | 俄罗斯毛片免费大全 | 国产精品美女一区二区三区 | 欧美成人全部免费观看1314色 | 国产成人18黄网站免费网站 | 黄色美女网站免费 | 精品日韩一区二区三区视频 | 一级片免费的 | 国产精品18久久久久久vr | 中国一级做a爱片免费 | 一级一片 | 久久99久久精品久久久久久 | 国产人成亚洲第一网站在线播放 | 在线视频观看一区 | 亚洲va在线va天堂va四虎 | 日韩亚洲欧美一区 | 久久99国产精一区二区三区 | 玖玖精品在线 |