プロジェクト全体で使用したいと思いPercentRelativeLayout
ますが、スクロールを必要としないビューでうまく使用できました。ただし、使用する場合、やScrollView's
などの属性は機能しません。layout_heightPercent
layout_marginTopPercent
私の問題は、特に aCollapsingToolbarLayout
と aを使用しているときですNestedScrollView
。ここで、これが期待どおりに機能しない理由について、いくつかの手がかりを見つけました。
質問に対する解決策(2 番目の回答) はScrollView
、 onMeasure メソッドを拡張してオーバーライドすることです。いくつかのビューでこれを試みましたが、成功しませんでした。
作業に必要なレイアウトは次のとおりです。
<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/sign_in_coordinator_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#000000"
android:fitsSystemWindows="true"
android:animateLayoutChanges="true">
<android.support.design.widget.AppBarLayout
android:id="@+id/sign_in_app_bar_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="true"
android:animateLayoutChanges="true">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/sign_in_collapsing_toolbar_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
android:animateLayoutChanges="true"
app:expandedTitleMarginStart="48dp"
app:expandedTitleMarginEnd="64dp"
app:contentScrim="@color/primaryBackground"
app:layout_scrollFlags="exitUntilCollapsed|scroll"
>
<android.support.percent.PercentRelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_widthPercent="50%"
app:layout_heightPercent="80%"
app:layout_marginLeftPercent="33%"
android:scaleType="centerCrop"
android:src="@drawable/picture"
android:fitsSystemWindows="true"
app:layout_collapseMode="parallax"/>
</android.support.percent.PercentRelativeLayout>
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="58dp"
app:layout_collapseMode="pin"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"/>
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<android.support.v4.widget.NestedScrollView
android:id="@+id/scroll_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clipToPadding="false"
android:animateLayoutChanges="true"
app:behavior_overlapTop="315dp"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<android.support.percent.PercentRelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_widthPercent="50%"
app:layout_heightPercent="80%"
app:layout_marginLeftPercent="33%"
android:scaleType="centerCrop"
android:src="@drawable/picture"
android:fitsSystemWindows="true" />
</android.support.percent.PercentRelativeLayout>
</android.support.v4.widget.NestedScrollView>
どんな助けでも大歓迎です。