を呼び出すと、この奇妙なバグが発生します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>