当我拨打getSherlockActivity().getSupportActionBar().hide();
时,我遇到了这个奇怪的错误。它不会发生在4.2或更低,它只是在Android 4.3上。这很奇怪,我无法弄清楚是什么导致了它。我已经尝试了层次结构视图而没有运气。正如您所看到的,在附加的屏幕截图中,有一个白色条纹,其中分割ActionBar的底部部分曾经是。任何想法可能是什么?我google了很多,没有得到任何能帮助我解决这个问题的事情。
编辑:
这是活动代码:
<?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>