zoukankan      html  css  js  c++  java
  • android 知识收集

    1。无论是 Activity、BroadcastReceiver还是Service,只要是有长时间处理的任务,就需要重新开一个线程来处理,为什么会这样?

    因为他们都是运行在主线程中的。

    2。在使用BroadcastReceiver时,有一个我们需要注意的问题:

    在BroadcastReceiver的onReceive(Context context , Intent intent )这个context是Activity还是Application?

    如果你的BroadcastReceiver是通过在Activity中的registerReceiver(Broadcaster, filter)来注册的话,那么这个context就是这个Activity,

    而如果是通过AndroidManifest来注册的话,那么这个context就是:android.app.ReceiverRestrictedContext。

    3.AlarmManager对象配合PendingIntent使用,可以定时打开一个Activity,发送一个BroadCast或者开启一个Service。

    4.AlarmManager 启动 BroadcastReceiver  ,BroadcastReceiver 再启动 Server

      The Alarm Manager holds a CPU wake lock as long as the alarm receiver's onReceive() method is executing. This guarantees that

    the phone will not sleep until you have finished handling the broadcast. Once onReceive() returns, the Alarm Manager releases this

    wake lock.

      This means that the phone will in some cases sleep as soon as your onReceive() method completes. If your alarm receiver

    called Context.startService(), it is possible that the phone will sleep before the requested service is launched.

      To prevent this, your  BroadcastReceiver and Service will need to implement a separate wake lock policy to ensure that the phone

    continues running until the service becomes available.

    5.使用BroadcastReceiver实现开机启动Service或Activity

    注册一个BroadcastReceiver用来监听手机开机Intent, 而该BroadcastReceiver又负责启动你的service或者activity. 

    6.连接本地web服务器 

      10.0.2.2

  • 相关阅读:
    [BZOJ 2820]YY的GCD
    [POI 2007]ZAP-Queries
    [USACO 04OPEN]MooFest
    [HAOI 2011]Problem b
    [COGS 2258][HZOI 2015]复仇的序幕曲
    [UOJ 41]【清华集训2014】矩阵变换
    [POJ 3487]The Stable Marriage Problem
    [POJ 3252]Round Numbers
    [COGS 1799][国家集训队2012]tree(伍一鸣)
    [SDOI 2011]计算器
  • 原文地址:https://www.cnblogs.com/yuyutianxia/p/3514067.html
Copyright © 2011-2022 走看看