正如标题所说,当我尝试使用片段进行简单的活动时,我在屏幕上看到的只是片段内容。状态栏,背景,一切都缺失。 I made a video to show what happens [0:47]。如果您观看视频,该应用程序适用于KitKat,但在Lollipop上失败。我不确定这是否是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>
有什么想法吗?
答案 0 :(得分:1)
您应该尝试删除片段,然后添加新片段以查看是否失败。 我也会尝试在onCreate之后稍后进行替换。
不过,为什么你仍然使用L预览,而不是L?另外,如果id可以是片段本身的id,那对我来说并不是很清楚。文档似乎更多地引用容器ID而不是片段ID ...