Как правильно заставить представление внутри ConstraintLayout принимать процент высоты видимой области, когда корневым представлением является ScrollView - PullRequest
2 голосов
/ 18 марта 2019

У меня есть эта иерархия представлений

ScrollView
        ConstraintLayout
            ImageView

            LinearLayout
                TextView
                TextView
                TextView
                ...

Я хочу добиться того, чтобы ImageView занимал как 65% процентов видимого экрана по вертикали ... но поскольку корневым представлением является ScrollView,ImageView занимает 65% прокручиваемой области ... Я хочу, чтобы ImageView занимал 65% видимой области.

Какой наилучший способ выполнить процедуру для получения чего-то подобного?

enter image description here

Исходный код:

<ScrollView
  xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:app="http://schemas.android.com/apk/res-auto"
  xmlns:tools="http://schemas.android.com/tools"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:fillViewport="true"
  tools:context=".MainActivity">

  <android.support.constraint.ConstraintLayout
    android:id="@+id/container"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <ImageView
      android:id="@+id/header"
      android:layout_width="match_parent"
      android:layout_height="0dp"
      android:scaleType="centerCrop"
      android:src="@drawable/rain"
      app:layout_constraintHeight_percent=".65"
      app:layout_constraintLeft_toLeftOf="parent"
      app:layout_constraintRight_toRightOf="parent"
      app:layout_constraintTop_toTopOf="parent"/>

    <LinearLayout
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:orientation="vertical"
      app:layout_constraintLeft_toLeftOf="parent"
      app:layout_constraintRight_toRightOf="parent"
      app:layout_constraintTop_toBottomOf="@id/header">

      <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="AAAAAA"
        android:textSize="50dp"/>

      <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="BBBB"
        android:textSize="50dp"/>

      <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="CCCCC"
        android:textSize="50dp"/>

      <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="DDDDD"
        android:textSize="50dp"/>



    </LinearLayout>
  </android.support.constraint.ConstraintLayout>

</ScrollView>

Заранее спасибо

1 Ответ

3 голосов
/ 18 марта 2019

Вы не можете установить высоту в процентах, когда находитесь внутри прокрутки.

Я предлагаю вам использовать Соотношение сторон , чтобы соответствовать вашим требованиям.

В вашем наборе высоты просмотра изображений0dp и установите размерное соотношение для высоты.

android:layout_height="0dp"
app:layout_constraintDimensionRatio="H,1:1" //change ratio as per your image ratio
...