3

在我开始我的第二个 Activity 之后,没有 ActionBar。当我调用 GetSupportActivity 时,它返回 null。为什么?我有 minSdkVersion 10 和 targetSdkVersion 15。

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.test.myapp"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="10"
        android:targetSdkVersion="15"
        />
    <uses-permission android:name="android.permission.INTERNET"/>
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/Theme.Sherlock.Light" 
        >
        <activity
            android:name=".MainActivity"
            android:label="@string/title_activity_main" 
            android:windowSoftInputMode="stateHidden"
            >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity 
            android:name=".ShowMusic2"
            android:label="Search Results">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
            </intent-filter>
        </activity>
    </application>

</manifest>

这是我的第二个活动 (ShowMusic2) 的 OnCreate。它是一个 ListActivity。

public class ShowMusic2 extends SherlockListActivity {
        @Override
        public void onCreate(Bundle savedInstanceState) {
       super.onCreate(savedInstanceState);

        getSupportActionBar().setDisplayHomeAsUpEnabled(true);

        showMusic = getIntent();
        pkgName = getPackageName();
        html = (String)showMusic.getStringExtra(pkgName + ".html");     
        new populateListView().execute(songs.toArray(new Song[songs.size()]));
        adapter =new SongAdapter(this,R.layout.list_item1, songs.toArray(new Song[songs.size()]));
        setListAdapter(adapter);
    }
4

3 回答 3

6

对于问题 getSupportActionBar() 总是返回 NULL 那是因为你在 AndroidManifest.xml 中设置了主题 NoActionBar

Theme.Sherlock.Light.NoActionBar

如果您的应用程序不使用操作栏,则无需使用该方法。

于 2013-04-16T02:19:11.370 回答
5

我没有玩过 SherlockListActivity 太多……但这是在黑暗中拍摄的……尝试移动

   getSupportActionBar().setDisplayHomeAsUpEnabled(true);

进入你的 onStart 方法覆盖而不是 onCreate

于 2012-08-03T20:22:22.603 回答
0
if you're using toolbar in a separate xml file without any layout, then getSupportActionBar() will return null. To avoid this error, just place your toolbar inside a layout.

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:layout_width="match_parent"
    android:layout_height="?attr/actionBarSize"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:orientation="horizontal"
    xmlns:android="http://schemas.android.com/apk/res/android">


    <!-- Toolbar -->
    <android.support.v7.widget.Toolbar
        android:id="@+id/my_toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="@color/colorPrimary"
        android:theme="@style/AppTheme.CustomThemeOverlay"
        app:popupTheme="@style/AppTheme.PopupOverlay"
        app:layout_scrollFlags="scroll|enterAlways|snap" />

</LinearLayout>

将以下代码放入您的 style.xml 文件中

<style name="AppTheme.CustomThemeOverlay" parent="ThemeOverlay.AppCompat.ActionBar"/>
<style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light"/>

这个解决方案对我有用。我希望这可以帮助某人。:)

于 2019-06-12T19:18:58.753 回答