Android: сделать наложение соответствует высоте содержимого вместо увеличения высоты родителя - PullRequest
0 голосов
/ 18 июня 2019

У меня есть следующий код:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
    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">

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <ImageView
            android:id="@+id/imageView"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            tools:srcCompat="@tools:sample/avatars[1]" />

        <!-- This is the element of interest. 
             View is actually a custom element, but for this example, View has same behavior -->
        <View
            android:id="@+id/MyView"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="#A4D38D14" />
    </FrameLayout>
</android.support.constraint.ConstraintLayout>

Что приводит к следующему.Оранжевый - это размер представления интереса.Независимо от того, что я пытаюсь, кажется, я не могу заставить представление не расширять родительский элемент.

Bad image

Что я действительно хочу, так это представлениемасштабировать до той же высоты, что и изображение, как это:

enter image description here

Как этого достичь?Примечание: я не знаю размер изображения ..

Ответы [ 2 ]

1 голос
/ 18 июня 2019

Если я правильно понимаю ваш вопрос, вы также можете попробовать это

<?xml version="1.0" encoding="utf-8"?>
   <android.support.constraint.ConstraintLayout
           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">



           <ImageView
                   app:layout_constraintEnd_toEndOf="parent"
                   app:layout_constraintStart_toStartOf="parent"
                   app:layout_constraintTop_toTopOf="parent"
                   android:id="@+id/imageView"
                   android:layout_width="match_parent"
                   android:layout_height="wrap_content"
                   tools:srcCompat="@tools:sample/avatars[1]" />

           <!-- This is the element of interest.
                View is actually a custom element, but for this example, View has same behavior -->
           <View
                   app:layout_constraintEnd_toEndOf="parent"
                   app:layout_constraintStart_toStartOf="parent"
                   app:layout_constraintTop_toBottomOf="@id/imageView"
                   app:layout_constraintBottom_toBottomOf="parent"
                   android:id="@+id/MyView"
                   android:layout_width="match_parent"
                   android:layout_height="0dp"
                   android:background="#A4D38D14" />

   </android.support.constraint.ConstraintLayout>

Я публикую это, потому что, насколько мне известно, ConstraintLayout предназначен для использования единого макета для всего дизайна,

1 голос
/ 18 июня 2019

Пожалуйста, замените код, и все готово.

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
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">

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    tools:ignore="MissingConstraints">

    <ImageView
        android:id="@+id/imageView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        tools:srcCompat="@tools:sample/avatars[1]" />


    <View
        android:id="@+id/MyView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignBottom="@+id/imageView"
        android:background="#A4D38D14" />
</RelativeLayout>
</android.support.constraint.ConstraintLayout>

Ключ должен указать android:layout_alignBottom в представлении и изменить расположение фреймов на относительное расположение

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...