當前位置: 首頁>>代碼示例>>Java>>正文


Java Intent.FilterComparison方法代碼示例

本文整理匯總了Java中android.content.Intent.FilterComparison方法的典型用法代碼示例。如果您正苦於以下問題:Java Intent.FilterComparison方法的具體用法?Java Intent.FilterComparison怎麽用?Java Intent.FilterComparison使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在android.content.Intent的用法示例。


在下文中一共展示了Intent.FilterComparison方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: ServiceRecord

import android.content.Intent; //導入方法依賴的package包/類
ServiceRecord(ComponentName cn, Intent.FilterComparison fi, ServiceInfo si) {
    name = cn;
    plugin = cn.getPackageName();
    className = cn.getClassName();
    shortName = name.flattenToShortString();
    intent = fi;
    serviceInfo = si;
}
 
開發者ID:wangyupeng1-iri,項目名稱:springreplugin,代碼行數:9,代碼來源:ServiceRecord.java

示例2: retrieveAppBindingLocked

import android.content.Intent; //導入方法依賴的package包/類
public ProcessBindRecord retrieveAppBindingLocked(Intent intent, ProcessRecord app) {
    Intent.FilterComparison filter = new Intent.FilterComparison(intent);
    IntentBindRecord i = bindings.get(filter);
    if (i == null) {
        i = new IntentBindRecord(this, filter);
        bindings.put(filter, i);
    }
    ProcessBindRecord a = i.apps.get(app);
    if (a != null) {
        return a;
    }
    a = new ProcessBindRecord(this, i, app);
    i.apps.put(app, a);
    return a;
}
 
開發者ID:wangyupeng1-iri,項目名稱:springreplugin,代碼行數:16,代碼來源:ServiceRecord.java

示例3: retrieveServiceLocked

import android.content.Intent; //導入方法依賴的package包/類
private ServiceRecord retrieveServiceLocked(Intent service) {
    ComponentName cn = service.getComponent();
    ServiceRecord sr = mServicesByName.get(cn);
    if (sr != null) {
        return sr;
    }
    sr = mServicesByIntent.get(service);
    if (sr != null) {
        return sr;
    }
    String pn = cn.getPackageName();
    String name = cn.getClassName();

    // 看這個Plugin是否可以被打開
    if (!RePlugin.isPluginInstalled(pn)) {
        if (LOGR) {
            LogRelease.e(PLUGIN_TAG, "psm.is: p n ex " + name);
        }
        return null;
    }

    // 開始嘗試獲取插件的ServiceInfo
    ComponentList col = PluginFactory.queryPluginComponentList(pn);
    if (col == null) {
        if (LOG) {
            Log.e(TAG, "installServiceLocked(): Fetch Component List Error! pn=" + pn);
        }
        return null;
    }
    ServiceInfo si = col.getService(cn.getClassName());
    if (si == null) {
        if (LOG) {
            Log.e(TAG, "installServiceLocked(): Not register! pn=" + pn);
        }
        return null;
    }

    // 構建,放入表中
    Intent.FilterComparison fi = new Intent.FilterComparison(service);
    sr = new ServiceRecord(cn, fi, si);
    mServicesByName.put(cn, sr);
    mServicesByIntent.put(fi, sr);
    return sr;
}
 
開發者ID:wangyupeng1-iri,項目名稱:springreplugin,代碼行數:45,代碼來源:PluginServiceServer.java

示例4: IntentBindRecord

import android.content.Intent; //導入方法依賴的package包/類
IntentBindRecord(ServiceRecord service, Intent.FilterComparison intent) {
    this.service = service;
    this.intent = intent;
}
 
開發者ID:wangyupeng1-iri,項目名稱:springreplugin,代碼行數:5,代碼來源:IntentBindRecord.java


注:本文中的android.content.Intent.FilterComparison方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。