当我打电话时,我遇到了这个奇怪的错误getSherlockActivity().getSupportActionBar().hide();
。它不会发生在 4.2 或更低版本上,它只是在 Android 4.3 上发生。这很奇怪,我无法弄清楚是什么原因造成的。我试过没有运气的层次结构视图。如您所见,在附加的屏幕截图中,拆分 ActionBar 的底部曾经有一条白色条纹。任何想法这可能是什么?我用谷歌搜索了很多,没有得到任何可以帮助我解决这个问题的东西。
编辑:
这是活动代码:
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/fragment_container"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#ececec" />
这是片段:
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/layout_content"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#ececec" >
<TextView
android:id="@+id/textView_loading"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Načítání článku"
android:textColor="@color/postDetail_textColor_default"
android:layout_gravity="center" />
<WebView
android:id="@+id/webView_content"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#ececec"
android:visibility="invisible"
android:scrollbars="vertical"
android:scrollbarStyle="insideOverlay" />
</FrameLayout>