Как исправить размер в ViewStub после его раздувания? - PullRequest
0 голосов
/ 23 октября 2019

У меня есть ViewStub в ContraintLayout, который будет накачан пользовательским Layout целым числом включенного включения, потому что я хочу выбрать между двумя Layouts. Мой взгляд будет выглядеть так (Внизу есть мой ViewStub:

enter image description here

enter image description here

<TextView
    android:id="@+id/palabra_frase_tv"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_below="@id/palabra_foto_iv"
    android:layout_marginStart="16dp"
    android:layout_marginTop="8dp"
    android:layout_marginEnd="16dp"
    android:gravity="center"
    android:textSize="16sp"
    app:layout_constraintBottom_toTopOf="@id/vf"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toBottomOf="@+id/palabra_foto_iv"
    tools:text="Bla bla bla" />

<ViewStub
    android:id="@+id/vf"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent">

</ViewStub>

Проблема заключается в том, что когда я надуваю ViewStub макетом, текст (бла-бла-бла) не поднимается и сохраняет ту же позицию. раздутая раскладка?

...