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


Java ActionBarSherlockCompat類代碼示例

本文整理匯總了Java中com.actionbarsherlock.internal.ActionBarSherlockCompat的典型用法代碼示例。如果您正苦於以下問題:Java ActionBarSherlockCompat類的具體用法?Java ActionBarSherlockCompat怎麽用?Java ActionBarSherlockCompat使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


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

示例1: loadLogoFromManifest

import com.actionbarsherlock.internal.ActionBarSherlockCompat; //導入依賴的package包/類
/**
 * Attempt to programmatically load the logo from the manifest file of an
 * activity by using an XML pull parser. This should allow us to read the
 * logo attribute regardless of the platform it is being run on.
 *
 * @param activity Activity instance.
 * @return Logo resource ID.
 */
private static int loadLogoFromManifest(Activity activity) {
    int logo = 0;
    try {
        final String thisPackage = activity.getClass().getName();
        if (DEBUG) Log.i(TAG, "Parsing AndroidManifest.xml for " + thisPackage);

        final String packageName = activity.getApplicationInfo().packageName;
        final AssetManager am = activity.createPackageContext(packageName, 0).getAssets();
        final XmlResourceParser xml = am.openXmlResourceParser("AndroidManifest.xml");

        int eventType = xml.getEventType();
        while (eventType != XmlPullParser.END_DOCUMENT) {
            if (eventType == XmlPullParser.START_TAG) {
                String name = xml.getName();

                if ("application".equals(name)) {
                    //Check if the <application> has the attribute
                    if (DEBUG) Log.d(TAG, "Got <application>");

                    for (int i = xml.getAttributeCount() - 1; i >= 0; i--) {
                        if (DEBUG) Log.d(TAG, xml.getAttributeName(i) + ": " + xml.getAttributeValue(i));

                        if ("logo".equals(xml.getAttributeName(i))) {
                            logo = xml.getAttributeResourceValue(i, 0);
                            break; //out of for loop
                        }
                    }
                } else if ("activity".equals(name)) {
                    //Check if the <activity> is us and has the attribute
                    if (DEBUG) Log.d(TAG, "Got <activity>");
                    Integer activityLogo = null;
                    String activityPackage = null;
                    boolean isOurActivity = false;

                    for (int i = xml.getAttributeCount() - 1; i >= 0; i--) {
                        if (DEBUG) Log.d(TAG, xml.getAttributeName(i) + ": " + xml.getAttributeValue(i));

                        //We need both uiOptions and name attributes
                        String attrName = xml.getAttributeName(i);
                        if ("logo".equals(attrName)) {
                            activityLogo = xml.getAttributeResourceValue(i, 0);
                        } else if ("name".equals(attrName)) {
                            activityPackage = ActionBarSherlockCompat.cleanActivityName(packageName, xml.getAttributeValue(i));
                            if (!thisPackage.equals(activityPackage)) {
                                break; //on to the next
                            }
                            isOurActivity = true;
                        }

                        //Make sure we have both attributes before processing
                        if ((activityLogo != null) && (activityPackage != null)) {
                            //Our activity, logo specified, override with our value
                            logo = activityLogo.intValue();
                        }
                    }
                    if (isOurActivity) {
                        //If we matched our activity but it had no logo don't
                        //do any more processing of the manifest
                        break;
                    }
                }
            }
            eventType = xml.nextToken();
        }
    } catch (Exception e) {
        e.printStackTrace();
    }
    if (DEBUG) Log.i(TAG, "Returning " + Integer.toHexString(logo));
    return logo;
}
 
開發者ID:treasure-lau,項目名稱:CSipSimple,代碼行數:79,代碼來源:Utility4.java

示例2: onCreate

import com.actionbarsherlock.internal.ActionBarSherlockCompat; //導入依賴的package包/類
@Override
public void onCreate() {
    ActionBarSherlock.unregisterImplementation(ActionBarSherlockNative.class);
    ActionBarSherlock.unregisterImplementation(ActionBarSherlockCompat.class);
    ActionBarSherlock.registerImplementation(HoloActionBarSherlockNative.class);
    ActionBarSherlock.registerImplementation(HoloActionBarSherlockCompat.class);
}
 
開發者ID:WassimBenltaief,項目名稱:laposte-android,代碼行數:8,代碼來源:AddonSherlock.java


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