gpt4 book ai didi

android - 为 Android 应用程序设置 ActionBarSherlock 主题

转载 作者:太空宇宙 更新时间:2023-11-04 15:11:43 24 4
gpt4 key购买 nike

阅读下面的更新 2 以获得答案

我正在尝试在我的应用程序中使用 ActionBarSherlock。我从project github repo查看了4.0.0版本,在 Netbeans 中构建它,然后将library-4.0.0.jar 文件复制到我的项目的 lib 目录中(我没有使用 Eclipse)。

现在这只是一个骨架 Activity ,它在 ICS 中启动得很好,但是当我在 Gingerbread 上运行它时,我收到以下异常,提示我没有 Theme.Sherlock (或类似的)应用程序主题:

java.lang.RuntimeException: Unable to start activity ComponentInfo{com.arashpayan.prayerbook/com.arashpayan.prayerbook.PrayerBook}: java.lang.IllegalStateException: You must use Theme.Sherlock, Theme.Sherlock.Light, Theme.Sherlock.Light.DarkActionBar, or a derivative.
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1647)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1663)
at android.app.ActivityThread.access$1500(ActivityThread.java:117)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:931)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:130)
at android.app.ActivityThread.main(ActivityThread.java:3683)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:507)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:839)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:597)
at dalvik.system.NativeStart.main(Native Method)
Caused by: java.lang.IllegalStateException: You must use Theme.Sherlock, Theme.Sherlock.Light, Theme.Sherlock.Light.DarkActionBar, or a derivative.
at com.actionbarsherlock.internal.ActionBarSherlockCompat.generateLayout(ActionBarSherlockCompat.java:987)
at com.actionbarsherlock.internal.ActionBarSherlockCompat.installDecor(ActionBarSherlockCompat.java:899)
at com.actionbarsherlock.internal.ActionBarSherlockCompat.setContentView(ActionBarSherlockCompat.java:852)
at com.actionbarsherlock.ActionBarSherlock.setContentView(ActionBarSherlock.java:655)
at com.actionbarsherlock.app.SherlockFragmentActivity.setContentView(SherlockFragmentActivity.java:316)
at com.arashpayan.prayerbook.PrayerBook.onCreate(PrayerBook.java:44)
at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1611)
... 11 more

它提示的行 (PrayerBook:44) 是对 setContentView 的调用。该应用程序仅包含一个具有 onCreate() 方法的 Activity,我从顶部调用该方法:

public void onCreate(Bundle savedInstanceState)
{
setTheme(com.actionbarsherlock.R.style.Theme_Sherlock);
super.onCreate(savedInstanceState);

TextView rootTextView = new TextView(this);
rootTextView.setText("Hello, world!");
setContentView(rootTextView);

getSupportActionBar().setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);
ActionBar.Tab tab = getSupportActionBar().newTab();
tab.setText("Prayers");
getSupportActionBar().addTab(tab);

tab = getSupportActionBar().newTab();
tab.setText("Recents");
getSupportActionBar().addTab(tab);

tab = getSupportActionBar().newTab();
tab.setText("Bookmarks");
getSupportActionBar().addTab(tab);
}

我一定是主题设置不正确,但我就是不知道怎么设置。有人可以帮忙吗?

更新下面,CommonsWare 指出可以在 AndroidManifest.xml 中设置主题。我已经尝试过这样的操作:

<application android:label="@string/app_name" android:icon="@drawable/icon" android:theme="@style/Theme.Sherlock">
<activity android:name="PrayerBook"
android:label="@string/app_name"
android:configChanges="orientation|keyboardHidden|screenLayout|uiMode|mcc|mnc|locale|navigation|fontScale|screenSize">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="LanguagesActivity" />
</application>

但是 Ant 在尝试构建应用程序时给了我一个错误:

/Users/arash/coding/prayerbook/AndroidManifest.xml:7: error: Error: No resource found that matches the given name (at 'theme' with value '@style/Theme.Sherlock').

更新2在 CommonsWare 的后续评论中的帮助下,我得以让它发挥作用。我需要添加 ActionBarSherlock 作为项目依赖项。为此,

1) 我从项目的 lib 目录中删除了 library-4.0.0.jarandroid-support-4.0.jar

2) 接下来,导航到从 github checkout 的 ActionBarSherlock 目录根目录内的 library 文件夹。输入 android update project,以便为库创建 build.xmlproguard.cfg 文件。

3) 最后,cd 返回主项目目录,并使用 android update project --path 添加 ABS 作为库依赖项。 --library ../ActionBarSherlock/library命令中 --library 的路径将根据您 checkout 存储库的位置而有所不同。 ActionBarSherlock 和我的应用程序的项目目录是同级目录。

最佳答案

通常,您可以在 list 中设置主题,如the Android developer documentation所示(并链接到 the ActionBarSherlock theming page )。

如果您想在应用程序中的任何地方使用 ActionBarSherlock,则可以这样做:

<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/Theme.Sherlock">

关于android - 为 Android 应用程序设置 ActionBarSherlock 主题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21263624/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com