【发布时间】:2012-04-03 04:25:48
【问题描述】:
阅读下面的更新 2 以获得答案
我正在尝试在我的应用中使用 ActionBarSherlock。我从project github repo 中检查了 4.0.0 版本,在 Netbeans 中构建它,然后将 library-4.0.0.jar 文件复制到我的项目的 lib 目录中(我没有使用 Eclipse)。
它现在只是一个骨架活动,它在 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() 方法的活动,我从顶部调用setTheme():
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 在他的后续 cmets 中的帮助下,我能够让它工作。我需要将 ActionBarSherlock 添加为项目依赖项。为此,
1) 我从项目的 lib 目录中删除了 library-4.0.0.jar 和 android-support-4.0.jar。
2) 接下来,导航到从 github 签出的 ActionBarSherlock 目录根目录中的 library 文件夹。键入 android update project,以便为库创建 build.xml 和 proguard.cfg 文件。
3) 最后,cd 回到主项目目录并添加 ABS 作为库依赖项,android update project --path . --library ../ActionBarSherlock/library
命令中--library 的路径将根据您签出存储库的位置而有所不同。 ActionBarSherlock 和我的应用程序的项目目录是同级目录。
【问题讨论】:
-
去ABS github下载示例ABS应用源码看看
-
这是我检查的第一个地方。在 ABS 演示应用程序中,SampleList 类的静态 THEME 成员被初始化为 R.style.Theme_Sherlock 但从未在该活动中使用,除非从选项菜单更改它的存储值。所有活动都从该主要活动调用 setTheme() 开始,该常量作为 onCreate() 方法最顶部的参数,这就是我在代码中执行相同操作的原因。您会注意到 ABS 网站上“父主题”部分的第二段中也列出了相同的说明。 actionbarsherlock.com/theming.html