4
私のアプリケーションでは、CoordinatorLayoutを使用しています。余分なスペースをたくさん使用しようとしていますが利用可能です。設定コーディネーターのレイアウトの高さを使用して変更しました。余分なスペースを表示しています。フォームtab1、tab2、tab3をクリックしても問題はありません。しかし、tab3、tab2、tab1とtab2、tab2で余分なスペースがたくさんあることをしようとしています。スクロール中にコーディネーターレイアウトを使用した余分なスペース
1) In my main activity am using Observable scrollview.
<?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/kudix_cordinator"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary"
android:fitsSystemWindows="false"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:layout_collapseMode="pin">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/htab_collapse_toolbar"
android:layout_width="match_parent"
android:layout_height="250dp"
android:layout_marginBottom="0dp"
app:contentScrim="?attr/colorPrimary"
app:titleEnabled="false">
<ImageView
android:layout_width="match_parent"
android:layout_height="@dimen/parallax_image_height"
android:background="@drawable/ic_launcher"
android:fitsSystemWindows="true"
android:scaleType="centerCrop"
app:layout_collapseMode="parallax" />
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
app:tabIndicatorColor="@android:color/white"
app:tabSelectedTextColor="@android:color/white"
app:tabTextColor="@color/white" />
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<android.support.v4.view.ViewPager
android:id="@+id/kudix_club_viewpager"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="10dp"
android:layout_marginLeft="15dp"
android:layout_marginRight="15dp"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
/>
</android.support.design.widget.CoordinatorLayout>
各タブフラグメントには、さまざまなタイプのUIが含まれています。
余分なスペースはどういう意味ですか?あなたはスクリーンショットを提供できますか? –
の下部にはスペースがたくさんあります –
あなたはそれを埋めるためのコンテンツがない場合、通常はスペースがあります!それは普通です! –