Задать вопрос

Как сделать чтобы размер фрагмента растягивался по содержимому?

фрагмент поторый нужно растягивать frame_feature
<?xml version="1.0" encoding="utf-8"?>

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical"
    >

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

  <android.support.constraint.ConstraintLayout
      android:id="@+id/clPartialPassSurvey"
      android:layout_width="match_parent"
      android:layout_height="32dp"
      app:layout_constraintLeft_toLeftOf="parent"
      app:layout_constraintRight_toRightOf="parent"
      >

    <TextView
        android:id="@+id/tvHeader"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="16dp"
        android:text="ХАРАКТЕРИСТИКА"
        android:textAllCaps="true"
        android:textAppearance="@style/DescrAppearance.Title.HeaderBlock"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        />

    <ImageView
        android:id="@+id/ivHeader"
        android:layout_width="24dp"
        android:layout_height="24dp"
        android:layout_marginRight="16dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:srcCompat="@drawable/ic_header_survey"
        />
  </android.support.constraint.ConstraintLayout>

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

  <FrameLayout
      android:id="@+id/frame_feature"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      />
</LinearLayout>
  • Вопрос задан
  • 209 просмотров
Подписаться 1 Простой Комментировать
Решения вопроса 1
D_mitry
@D_mitry
iOS / Android developer
Если я правильно понял, то frame_feature является контейнером, в который помещается фрагмент с помощью FragmentManager.
В таком случае, во-первых, нужно убедиться, что для layout фрагмента установлено
android:layout_width="match_parent"
android:layout_height="wrap_content"

Во-вторых, если размер не меняется автоматически, то можно запросить обновление у его родительского контейнера (в данном случае LinearLayout) методом requestLayout()
Ответ написан
Комментировать
Пригласить эксперта
Ваш ответ на вопрос

Войдите, чтобы написать ответ

Похожие вопросы