getsupportactionbar()在Gingerbread上返回null / crashing

时间:2013-10-15 06:42:03

标签: java android android-actionbar actionbarsherlock android-support-library

尝试将Gingerbread支持添加到我的应用程序并失败(在所有活动中崩溃)后,我编写了一些测试代码来解决问题。

我正在扩展SherlockFragment Activity。

import android.content.SharedPreferences;
import android.os.Bundle;
import android.preference.PreferenceManager;
import android.support.v4.app.ActionBarDrawerToggle;
import android.support.v4.widget.DrawerLayout;
import android.widget.ListView;

import com.actionbarsherlock.app.ActionBar;
import com.actionbarsherlock.app.SherlockFragmentActivity;
public class MainActivity extends SherlockFragmentActivity {

    ActionBar ab;

 @Override
    public void onCreate(Bundle savedInstanceState){

        PreferenceManager.setDefaultValues(this, R.xml.preferences, false);

        SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);

        String themestring = prefs.getString("theme","holo_colour");


        if (themestring.equals("holo_dark_colour")){
            setTheme(R.style.DarkBlueTheme);
        }
        if (themestring.equals("holo_colour")){
            setTheme(R.style.BlueTheme);
        }

        setContentView(R.layout.gtest);

        super.onCreate(savedInstanceState);

        ab = getSupportActionBar(); //crash!

    }

但我无法为我的生活让它停止在Gingerbread上崩溃,它在4.0 +上工作正常。

动态设置主题:

<style name="BlueTheme" parent="Theme.Sherlock.Light">
    <item name="actionBarStyle">@style/BlueActionBar</item>
    <item name="android:actionBarStyle">@style/BlueActionBar</item>

</style>


<style name="BlueActionBar" parent="Widget.Sherlock.ActionBar">
    <item name="android:background">#33b5e5</item>
    <item name="background">#33b5e5</item>
    <item name="android:titleTextStyle">@style/myTheme.ActionBar.Text</item>
    <item name="titleTextStyle">@style/myTheme.ActionBar.Text</item>

</style>

提前感谢您的帮助!

1 个答案:

答案 0 :(得分:0)

您在较低版本中使用Sherlock Library ActionBar 但Android本身有一个库,可以在较低版本中使用ActionBar 按照本教程link进行操作。