0

AppBarLayout 内にタブレイアウトがあります。ロリポップ以前のバージョンのタブバーレイアウトの下にシャドウ ビューを追加しようとしています。シャドウ ビューが表示されますが、下にスクロールするとシャドウ ビューが透明に見えません。tabindicator とシャドウの間に、tablayout の下にパディングがあるように見えます。ただし、ツールバーのすぐ下で同じシャドウビューを使用すると、上にスクロールすると透明に見えます。タブレイアウトの影を追加するために何か違うことがあるかどうか誰かに教えてもらえますか?

main_layout-

<android.support.v4.widget.DrawerLayout     
 xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:tools="http://schemas.android.com/tools"
 android:id="@+id/drawer_layout"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:fitsSystemWindows="true">

 <RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fitsSystemWindows="true"
        android:orientation="vertical">

        <include layout="@layout/include_coordinator_layout"/>

    </LinearLayout>

    <TextView
        android:id="@+id/mtext_view"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:gravity="center"
        android:visibility="gone"/>

    <Button
        android:id="@+id/mBtn"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:layout_below="@id/mtext_view"
        android:text="@string/retry_button"
        android:visibility="gone"/>
</RelativeLayout>

<android.support.design.widget.NavigationView
    android:id="@+id/navView"
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:layout_gravity="start"
    android:background="@color/white"
    android:fitsSystemWindows="true" />

</android.support.v4.widget.DrawerLayout>

そして、これは私の include_coordinator_layout です

<?xml version="1.0" encoding="utf-8"?>
 <android.support.design.widget.CoordinatorLayout  
  xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:app="http://schemas.android.com/apk/res-auto"
     android:id="@+id/main_content"
   android:layout_width="match_parent"
   android:layout_height="match_parent">

    <android.support.design.widget.AppBarLayout
       android:id="@+id/appbar"
       android:layout_width="match_parent"
       android:layout_height="wrap_content">

    <include
        android:id="@+id/toolbar"
        layout="@layout/tool_bar" />

    <android.support.design.widget.TabLayout
        android:id="@+id/tab_layout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:tabMaxWidth="0dp"
        app:tabGravity="fill"
        app:tabMode="fixed"
        android:background="@color/tab_layout_color"/>

    <View
        android:id="@+id/shadow_view"
        android:layout_width="match_parent"
        android:layout_height="5dp"
        android:background="@drawable/toolbar_shadow"
        />

</android.support.design.widget.AppBarLayout>

<android.support.v4.view.ViewPager
    android:id="@+id/pager"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_behavior="@string/appbar_scrolling_view_behavior" />

</android.support.design.widget.CoordinatorLayout>

これは私のtoolbar_shadowドローアブルです。

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <gradient
        android:startColor="@android:color/transparent"
        android:endColor="#88333333"
        android:angle="90"/>
</shape>
4

1 に答える 1

0

私はあなたがあなたのレイアウトを持っていると思いますLinearLayoutか?

また

LinearLayout を RelativeLayout に変更して を追加しandroid:layout_below="@+id/appbar"、ViewPager に (または ConstraintLayout や同様の方法を使用して)、ツールバーとビュー ページャーの順序を切り替えます。android:paddingTop="-5dp"android:clipToPadding="false"

また

それを FrameLayout に変更し、ViewPager が最初になるようにビューを並べ替えてから、dimen がandroid:layout_marginTop="@dimen/sizeOfToolBarAndTabsWithoutShadow"ツールバーとタブの設定サイズ (影なし) になる場所に配置します。いくつかのスクロールビューとclipToPaddingを備えた視覚的なアーティファクトを覚えているように見えるので、これをやりたいと思うかもしれません

なんで?

ビューのサイズにはAppBarLayout影が含まれているため、基本的なビュー グループ (LinearLayout) は次のビュー (viewpager) をレイアウトする方法がわからないため、影がコンテンツにわずかに重なるようにします。これは最後に描画する必要があるため、ビューページャーの上部が影を覆わないこと

于 2016-09-21T00:19:15.240 に答える