5

なぜか分かりませんが、ツールバーが折りたたまれて2番目のステータスバーが表示されるようです。ツールバーのレイアウトステータスバーの問題を解消

すべてのコンポーネントでandroid:fitsSystemWindows="true"を使用しました。これがなければ、ツールバーはステータスバーから出てきました。ここで

は良く説明するためにいくつかの画像です: Images

私はそのようなことを見たことがない、と私はそれらすべてを試してみましたが、私はそれを解決する方法がわかりません。 ネット上で何も見つかりませんでした。ここ


コード:

レイアウト:

<android.support.design.widget.CollapsingToolbarLayout 
    android:id="@+id/collapsing_toolbar" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:fitsSystemWindows="true" 
    app:statusBarScrim="?attr/colorPrimaryDark" 
    app:contentScrim="?attr/colorPrimary" 
    app:layout_scrollFlags="scroll|exitUntilCollapsed" > 

    <ImageView 
     android:id="@+id/photo_actor" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:scaleType="centerCrop" 
     android:fitsSystemWindows="true" 
     app:layout_collapseMode="parallax" /> 
    <View 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     app:layout_collapseMode="parallax" 
     android:fitsSystemWindows="true" 
     android:background="@drawable/background_protection" /> 
    <android.support.v7.widget.Toolbar 
     android:id="@+id/toolbar" 
     android:fitsSystemWindows="true" 
     android:layout_width="match_parent" 
     android:layout_height="?attr/actionBarSize" 
     app:layout_collapseMode="pin" /> 
</android.support.design.widget.CollapsingToolbarLayout> 
</android.support.design.widget.AppBarLayout> 
<android.support.v4.widget.NestedScrollView 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    app:layout_behavior="@string/appbar_scrolling_view_behavior"> 
    <LinearLayout 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:padding="8dp" 
     android:orientation="vertical"> 
     <WebView 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:background="@null" 
      android:id="@+id/webview_bio"/> 
    </LinearLayout> 
    </android.support.v4.widget.NestedScrollView> 

アクティビティのonCreate:

Toolbar toolbar = (Toolbar)findViewById(R.id.toolbar); 
    setSupportActionBar(toolbar); 

    CollapsingToolbarLayout collapsingToolbarLayout = (CollapsingToolbarLayout) findViewById(R.id.collapsing_toolbar); 
    if(collapsingToolbarLayout!=null){ 
     collapsingToolbarLayout.setTitle(advm.getName()); 
    } 

スタイル:それは、そのfitSystemWindowsにCollapsingToolbarLayoutによって追加の余分なパディングを()ようだ

<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar"> 
    <item name="colorPrimary">@color/colorPrimary</item> 
    <item name="colorPrimaryDark">@color/colorPrimaryDark</item> 
    <item name="colorAccent">@color/colorAccent</item> 
    <item name="android:textColor">@color/text_color</item> 
</style> 

<style name="AppTheme.NoActionBar"> 
    <item name="android:windowDrawsSystemBarBackgrounds">true</item> 
    <item name="android:windowTranslucentNavigation">true</item> 
    <item name="android:statusBarColor">@android:color/transparent</item> 
    <item name="windowActionBar">false</item> 
    <item name="windowNoTitle">true</item> 
</style> 

答えて

1

(私は、現在の活動に使用するものは、第二のです)。 <item name="android:windowTranslucentStatus">true</item>もテーマレベル(API19 +)で有効にして、フルスクリーンモードと同じように安定したレイアウトにする必要があると思います。

0

誰でもこの問題に直面している、親要素にこれを追加: '、

<android.support.design.widget.AppBarLayout 
android:fitsSystemWindows="true" 
... 
> 
... 
</android.support.design.widget.AppBarLayout> 

幸運:

上記のコードで
android:fitsSystemWindows="true" 

私はそれが可能になると思います。

関連する問題