android.support.v4.app.FragmentActivity缺少操作栏

时间:2015-03-24 12:27:46

标签: android

我正在使用支持库android.support.v4.app.FragmentActivity来创建基于片段的活动。

自从Lollipop以来,我现在在所有基于片段的活动中都缺少我的操作栏。我想知道这与现在从actionbaractivity继承的活动有关吗?

我列在我的清单,活动和片段xml下面,希望有人能告诉我为什么会这样。设计屏幕都显示标题栏,但在模拟器和实际设备运行时缺少。

首先,这是我为每个活动扩展的片段活动类,后跟我的xml文件:

SingleFragmentActivity.java:

import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentActivity;
import android.support.v4.app.FragmentManager;

public abstract class SingleFragmentActivity extends FragmentActivity {

    protected abstract Fragment createFragment();

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_fragment);

        FragmentManager fm = getSupportFragmentManager();
        Fragment fragment = fm.findFragmentById(R.id.fragmentContainer);

        if (fragment == null) {
            fragment = createFragment();
            fm.beginTransaction().add(R.id.fragmentContainer, fragment).commit();
        }
    }

}

的AndroidManifest.xml:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="safecontact.net.savemenow" >

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name=".MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

activity_fragment.xml:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
                xmlns:tools="http://schemas.android.com/tools"
                android:id="@+id/fragmentContainer"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:paddingLeft="@dimen/activity_horizontal_margin"
                android:paddingRight="@dimen/activity_horizontal_margin"
                android:paddingTop="@dimen/activity_vertical_margin"
                android:paddingBottom="@dimen/activity_vertical_margin"
                tools:context=".MainActivity">

    <TextView
        android:text="@string/hello_world"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"/>

</FrameLayout>

fragment_appt.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:orientation="vertical"
              android:layout_width="match_parent"
              android:layout_height="match_parent"
              android:weightSum="1">
... REST OF FRAGMENT LAYOUT CUT FOR BREVITY

在设计视图中,操作栏和标题等清晰可见,但是当我在模拟器上运行时,操作栏完全丢失,只显示活动视图(带有片段)。

我希望有人可以帮忙解决这个问题,因为它让我很生气。我确信这与我使用片段支持库这一事实有关。或者这可能是一个主题问题?

感谢。

编辑:styles.xml按要求列出:

<resources>

    <!-- Base application theme. -->
    <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
        <!-- Customize your theme here. -->
    </style>

</resources>

2 个答案:

答案 0 :(得分:3)

您的AppTheme继承自Theme.AppCompat。要使其正常工作,您必须继承自AppCompatActivity。由于AppCompatActivity本身继承自FragmentActivity,因此您的大多数现有代码都应该没问题。唯一需要更改的内容是与操作栏相关的任何内容,例如:

  • 使用getSupportActionBar()而不是getActionBar()来获取ActionBar对象

  • 在需要的地方使用自定义命名空间(例如app)中的属性(例如app:showAsAction)而不是android命名空间(例如android:showAsAction)在菜单资源

请注意,旧版本ActionBarActivity已被使用,已被声明已弃用。

答案 1 :(得分:0)

使用支持工具栏进行Lollipop而不是ActionBar