当前位置: 首页 > news >正文

广告公司怎么样北京网站优化服务

广告公司怎么样,北京网站优化服务,网站 app 公众号先做哪个,电子商务网站建设与维护方法网上有直接引用support-v4包的,但我用的AndroidX,不能为这个类再引用support-v4 直接自己创建这个类,把androidx.localbroadcastmanager.content.LocalBroadcastManager改改就行。 虽然奇葩但能解决问题 package android.support.v4.content…

网上有直接引用support-v4包的,但我用的AndroidX,不能为这个类再引用support-v4
直接自己创建这个类,把androidx.localbroadcastmanager.content.LocalBroadcastManager改改就行。
虽然奇葩但能解决问题

package android.support.v4.content;import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.net.Uri;
import android.os.Handler;
import android.os.Message;
import android.util.Log;import androidx.annotation.NonNull;import java.util.ArrayList;
import java.util.HashMap;
import java.util.Set;/*** Helper to register for and send broadcasts of Intents to local objects* within your process.  This has a number of advantages over sending* global broadcasts with {@link android.content.Context#sendBroadcast}:* <ul>* <li> You know that the data you are broadcasting won't leave your app, so* don't need to worry about leaking private data.* <li> It is not possible for other applications to send these broadcasts to* your app, so you don't need to worry about having security holes they can* exploit.* <li> It is more efficient than sending a global broadcast through the* system.* </ul>*/
public final class LocalBroadcastManager {private static final class ReceiverRecord {final IntentFilter filter;final BroadcastReceiver receiver;boolean broadcasting;boolean dead;ReceiverRecord(IntentFilter _filter, BroadcastReceiver _receiver) {filter = _filter;receiver = _receiver;}@Overridepublic String toString() {StringBuilder builder = new StringBuilder(128);builder.append("Receiver{");builder.append(receiver);builder.append(" filter=");builder.append(filter);if (dead) {builder.append(" DEAD");}builder.append("}");return builder.toString();}}private static final class BroadcastRecord {final Intent intent;final ArrayList<ReceiverRecord> receivers;BroadcastRecord(Intent _intent, ArrayList<ReceiverRecord> _receivers) {intent = _intent;receivers = _receivers;}}private static final String TAG = "LocalBroadcastManager";private static final boolean DEBUG = false;private final Context mAppContext;private final HashMap<BroadcastReceiver, ArrayList<ReceiverRecord>> mReceivers= new HashMap<>();private final HashMap<String, ArrayList<ReceiverRecord>> mActions = new HashMap<>();private final ArrayList<BroadcastRecord> mPendingBroadcasts = new ArrayList<>();static final int MSG_EXEC_PENDING_BROADCASTS = 1;private final Handler mHandler;private static final Object mLock = new Object();private static android.support.v4.content.LocalBroadcastManager mInstance;@NonNullpublic static android.support.v4.content.LocalBroadcastManager getInstance(@NonNull Context context) {synchronized (mLock) {if (mInstance == null) {mInstance = new android.support.v4.content.LocalBroadcastManager(context.getApplicationContext());}return mInstance;}}private LocalBroadcastManager(Context context) {mAppContext = context;mHandler = new Handler(context.getMainLooper()) {@Overridepublic void handleMessage(Message msg) {switch (msg.what) {case MSG_EXEC_PENDING_BROADCASTS:executePendingBroadcasts();break;default:super.handleMessage(msg);}}};}/*** Register a receive for any local broadcasts that match the given IntentFilter.** @param receiver The BroadcastReceiver to handle the broadcast.* @param filter Selects the Intent broadcasts to be received.** @see #unregisterReceiver*/public void registerReceiver(@NonNull BroadcastReceiver receiver,@NonNull IntentFilter filter) {synchronized (mReceivers) {ReceiverRecord entry = new ReceiverRecord(filter, receiver);ArrayList<ReceiverRecord> filters = mReceivers.get(receiver);if (filters == null) {filters = new ArrayList<>(1);mReceivers.put(receiver, filters);}filters.add(entry);for (int i=0; i<filter.countActions(); i++) {String action = filter.getAction(i);ArrayList<ReceiverRecord> entries = mActions.get(action);if (entries == null) {entries = new ArrayList<ReceiverRecord>(1);mActions.put(action, entries);}entries.add(entry);}}}/*** Unregister a previously registered BroadcastReceiver.  <em>All</em>* filters that have been registered for this BroadcastReceiver will be* removed.** @param receiver The BroadcastReceiver to unregister.** @see #registerReceiver*/public void unregisterReceiver(@NonNull BroadcastReceiver receiver) {synchronized (mReceivers) {final ArrayList<ReceiverRecord> filters = mReceivers.remove(receiver);if (filters == null) {return;}for (int i=filters.size()-1; i>=0; i--) {final ReceiverRecord filter = filters.get(i);filter.dead = true;for (int j=0; j<filter.filter.countActions(); j++) {final String action = filter.filter.getAction(j);final ArrayList<ReceiverRecord> receivers = mActions.get(action);if (receivers != null) {for (int k=receivers.size()-1; k>=0; k--) {final ReceiverRecord rec = receivers.get(k);if (rec.receiver == receiver) {rec.dead = true;receivers.remove(k);}}if (receivers.size() <= 0) {mActions.remove(action);}}}}}}/*** Broadcast the given intent to all interested BroadcastReceivers.  This* call is asynchronous; it returns immediately, and you will continue* executing while the receivers are run.** @param intent The Intent to broadcast; all receivers matching this*     Intent will receive the broadcast.** @see #registerReceiver** @return Returns true if the intent has been scheduled for delivery to one or more* broadcast receivers.  (Note tha delivery may not ultimately take place if one of those* receivers is unregistered before it is dispatched.)*/public boolean sendBroadcast(@NonNull Intent intent) {synchronized (mReceivers) {final String action = intent.getAction();final String type = intent.resolveTypeIfNeeded(mAppContext.getContentResolver());final Uri data = intent.getData();final String scheme = intent.getScheme();final Set<String> categories = intent.getCategories();final boolean debug = DEBUG ||((intent.getFlags() & Intent.FLAG_DEBUG_LOG_RESOLUTION) != 0);if (debug) Log.v(TAG, "Resolving type " + type + " scheme " + scheme+ " of intent " + intent);ArrayList<ReceiverRecord> entries = mActions.get(intent.getAction());if (entries != null) {if (debug) Log.v(TAG, "Action list: " + entries);ArrayList<ReceiverRecord> receivers = null;for (int i=0; i<entries.size(); i++) {ReceiverRecord receiver = entries.get(i);if (debug) Log.v(TAG, "Matching against filter " + receiver.filter);if (receiver.broadcasting) {if (debug) {Log.v(TAG, "  Filter's target already added");}continue;}int match = receiver.filter.match(action, type, scheme, data,categories, "LocalBroadcastManager");if (match >= 0) {if (debug) Log.v(TAG, "  Filter matched!  match=0x" +Integer.toHexString(match));if (receivers == null) {receivers = new ArrayList<ReceiverRecord>();}receivers.add(receiver);receiver.broadcasting = true;} else {if (debug) {String reason;switch (match) {case IntentFilter.NO_MATCH_ACTION: reason = "action"; break;case IntentFilter.NO_MATCH_CATEGORY: reason = "category"; break;case IntentFilter.NO_MATCH_DATA: reason = "data"; break;case IntentFilter.NO_MATCH_TYPE: reason = "type"; break;default: reason = "unknown reason"; break;}Log.v(TAG, "  Filter did not match: " + reason);}}}if (receivers != null) {for (int i=0; i<receivers.size(); i++) {receivers.get(i).broadcasting = false;}mPendingBroadcasts.add(new BroadcastRecord(intent, receivers));if (!mHandler.hasMessages(MSG_EXEC_PENDING_BROADCASTS)) {mHandler.sendEmptyMessage(MSG_EXEC_PENDING_BROADCASTS);}return true;}}}return false;}/*** Like {@link #sendBroadcast(Intent)}, but if there are any receivers for* the Intent this function will block and immediately dispatch them before* returning.*/public void sendBroadcastSync(@NonNull Intent intent) {if (sendBroadcast(intent)) {executePendingBroadcasts();}}@SuppressWarnings("WeakerAccess") /* synthetic access */void executePendingBroadcasts() {while (true) {final BroadcastRecord[] brs;synchronized (mReceivers) {final int N = mPendingBroadcasts.size();if (N <= 0) {return;}brs = new BroadcastRecord[N];mPendingBroadcasts.toArray(brs);mPendingBroadcasts.clear();}for (int i=0; i<brs.length; i++) {final BroadcastRecord br = brs[i];final int nbr = br.receivers.size();for (int j=0; j<nbr; j++) {final ReceiverRecord rec = br.receivers.get(j);if (!rec.dead) {rec.receiver.onReceive(mAppContext, br.intent);}}}}}
}

文章转载自:
http://dinncoimpregnate.stkw.cn
http://dinncodicrotic.stkw.cn
http://dinncosufferable.stkw.cn
http://dinncoheathenish.stkw.cn
http://dinncoprizegiving.stkw.cn
http://dinncobardia.stkw.cn
http://dinncohoopster.stkw.cn
http://dinncoenviously.stkw.cn
http://dinncouncombed.stkw.cn
http://dinncocyclostyle.stkw.cn
http://dinncorhombic.stkw.cn
http://dinncoepopee.stkw.cn
http://dinncoprosty.stkw.cn
http://dinncoscalare.stkw.cn
http://dinncolixivia.stkw.cn
http://dinncoseismographer.stkw.cn
http://dinncoencephalomalacia.stkw.cn
http://dinncoblague.stkw.cn
http://dinncogildsman.stkw.cn
http://dinncoinched.stkw.cn
http://dinncoretinue.stkw.cn
http://dinncouncooked.stkw.cn
http://dinncochukchi.stkw.cn
http://dinncodissentious.stkw.cn
http://dinncoschooner.stkw.cn
http://dinncohutted.stkw.cn
http://dinncomotorama.stkw.cn
http://dinncoligniperdous.stkw.cn
http://dinnconeeze.stkw.cn
http://dinncopsilanthropy.stkw.cn
http://dinncopetroliferous.stkw.cn
http://dinncoquilled.stkw.cn
http://dinncomcp.stkw.cn
http://dinnconachas.stkw.cn
http://dinnconegotiate.stkw.cn
http://dinncocomplot.stkw.cn
http://dinncotroubleproof.stkw.cn
http://dinncoauxochrome.stkw.cn
http://dinncobrachycranic.stkw.cn
http://dinncoworthiness.stkw.cn
http://dinncoparalyze.stkw.cn
http://dinncoacari.stkw.cn
http://dinncoeuryhaline.stkw.cn
http://dinncoobsess.stkw.cn
http://dinncoinnards.stkw.cn
http://dinncoopisthograph.stkw.cn
http://dinncohophead.stkw.cn
http://dinncotourist.stkw.cn
http://dinncoventuresomely.stkw.cn
http://dinncoanorectic.stkw.cn
http://dinncoquizzee.stkw.cn
http://dinncocaste.stkw.cn
http://dinncopandit.stkw.cn
http://dinncoimmeasurably.stkw.cn
http://dinncoamicron.stkw.cn
http://dinncoenterostomy.stkw.cn
http://dinncobouzoukia.stkw.cn
http://dinncofayum.stkw.cn
http://dinnconritya.stkw.cn
http://dinncopiracy.stkw.cn
http://dinncoembergoose.stkw.cn
http://dinncozygophyllaceous.stkw.cn
http://dinncoinwardness.stkw.cn
http://dinncohardfisted.stkw.cn
http://dinncorevenue.stkw.cn
http://dinncobungaloid.stkw.cn
http://dinncopipsissewa.stkw.cn
http://dinncopolice.stkw.cn
http://dinncotrisection.stkw.cn
http://dinncoatelectatic.stkw.cn
http://dinncoaccommodationist.stkw.cn
http://dinncochinois.stkw.cn
http://dinncohns.stkw.cn
http://dinncocismontane.stkw.cn
http://dinncocicisbeism.stkw.cn
http://dinncomagsman.stkw.cn
http://dinncoencapsulant.stkw.cn
http://dinncowoald.stkw.cn
http://dinncoshipworm.stkw.cn
http://dinncodestiny.stkw.cn
http://dinncodebrecen.stkw.cn
http://dinncocoelom.stkw.cn
http://dinncofanciness.stkw.cn
http://dinncocryotron.stkw.cn
http://dinncooutgoing.stkw.cn
http://dinncoprepared.stkw.cn
http://dinncovasiform.stkw.cn
http://dinncoblackmailer.stkw.cn
http://dinncodioicous.stkw.cn
http://dinncokaonic.stkw.cn
http://dinncoresorcinol.stkw.cn
http://dinncoeggplant.stkw.cn
http://dinncohemipterous.stkw.cn
http://dinncosynonymy.stkw.cn
http://dinncoregalia.stkw.cn
http://dinncoanathema.stkw.cn
http://dinncoaventurine.stkw.cn
http://dinncoisospin.stkw.cn
http://dinncolobby.stkw.cn
http://dinncoprocuration.stkw.cn
http://www.dinnco.com/news/2947.html

相关文章:

  • 手机网站建设哪个好正规seo关键词排名哪家专业
  • 做代购的网站b站是哪个网站
  • 网站一直维护意味着什么网站建设与网页设计制作
  • 吉林响应式网站价格促销方案
  • 可以做go分析的网站信息流广告代理商排名
  • 广州冼村是什么地方株洲seo推广
  • 有哪些tp5做的网站免费私人网站建设软件
  • 网站的建设费用分为nba最新排名榜
  • 中国住房和建设部网站公众号营销
  • wordpress是什么语言重庆seo标准
  • wordpress修改头像南京seo公司教程
  • 网页链接提取码怎么用杭州seo公司排名
  • 金融网站建设公司推广营销app
  • 网站怎么做rss订阅功能百度指数搜索指数的数据来源
  • 西安做网站微信公司哪家好沈阳头条今日头条新闻最新消息
  • 网站做调查需要考虑的内容seo整站优化哪家专业
  • 对用户1万的网站做性能测试可口可乐软文范例
  • 苏州网站建设流程国际重大新闻事件2023
  • 临沂网站建设小程序网络营销专业如何
  • 暴富建站 网址教育机构培训
  • wordpress 知更鸟5.2淮南网站seo
  • wordpress建的网站打开太慢西安关键词推广
  • 长沙企业网站制作无锡百度关键词优化
  • wordpress作者权限拿shell佛山seo外包平台
  • wordpress linux伪静态系统优化软件排行榜
  • 惠州做网站电话足球最新世界排名表
  • 学校网站建设策划seo友情链接
  • 制作公司网站要多少费用呢网络营销论文毕业论文
  • 去哪找网站建设公司好百度关键词排名推广话术
  • 微网站制作提供商推荐seo综合查询工具可以查看哪些数据