Android L - 出现片段显示错误的活动(仅显示片段)



正如标题所说,当我尝试用片段制作一个简单的活动时,屏幕上得到的只是片段内容。状态栏,背景,一切都不见了。我制作了一个视频来展示发生的事情 [0:47]。如果您观看视频,该应用程序可以在KitKat上运行,但在棒棒糖上失败。我不确定这是否是 L 预览失败。

我的MainActivity的代码是由Android Studio生成的:

public class MainActivity extends Activity
{
    @Override
    protected void onCreate(Bundle prevState)
    {
        super.onCreate(prevState);
        setContentView(R.layout.activity_main);
        if(prevState == null)
            getFragmentManager().beginTransaction().replace(R.id.main_fragment, new PlaceholderFragment()).commit();
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu)
    {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.menu_main, menu);
        return true;
    }
    @Override
    public boolean onOptionsItemSelected(MenuItem item)
    {
        // Handle action bar item clicks here. The action bar will
        // automatically handle clicks on the Home/Up button, so long
        // as you specify a parent activity in AndroidManifest.xml.
        int id = item.getItemId();
        //noinspection SimplifiableIfStatement
        if(id == R.id.action_settings)
            return true;
        return super.onOptionsItemSelected(item);
    }
    /**
     * A placeholder fragment containing a simple view.
     */
    public static class PlaceholderFragment extends Fragment
    {
        public PlaceholderFragment()
        {
        }
        @Override
        public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle prevState)
        {
            View rootView = inflater.inflate(R.layout.fragment_main, container, false);
            return rootView;
        }
    }
}

我的.xml文件只是一个FrameLayout,里面有一个fragment元素。它在 onCreate(Bundle prevState) 方法中被替换,如上所示。

这是我MainActivity XML 文件:

<FrameLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/main_container"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity"
    tools:ignore="MergeRootFrame" >
    <fragment
        android:id="@+id/main_fragment"
        android:name="me.kworden.dart.fragment.MainFragment"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        tools:layout="@layout/fragment_main" />
</FrameLayout>

我的样式如下所示:

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <style name="AppTheme" parent="android:Theme.Material.Light.DarkActionBar">
        <item name="android:colorPrimaryDark">#C40048</item>
        <item name="android:colorPrimary">#FF005D</item>
        <item name="android:colorAccent">#AEFF00</item>
    </style>
</resources>

有什么想法吗?

您应该尝试删除片段,然后添加新片段以查看是否失败。我也会尝试在 onCreate 之后稍后进行替换。

顺便说一句,为什么你仍然使用 L 预览,而不是 L ?

另外,我不太清楚id是否可以是片段本身的id。文档似乎更多地引用了容器 ID 而不是片段 ID......

最新更新