minHeight что-нибудь делает? - PullRequest
       3

minHeight что-нибудь делает?

31 голосов
/ 14 сентября 2011

В прикрепленном изображении я хочу, чтобы столбец кнопок соответствовал высоте изображения, но я также хочу, чтобы для столбца кнопок была минимальная высота.

Он правильно соответствует высотеизображение, но не учитывает minHeight, и будет сворачивать кнопки вниз.

Я устанавливаю эти свойства для столбца кнопок:

<LinearLayout
   ...
   android:layout_alignTop="@+id/image"
   android:layout_alignBottom="@+id/image"
   android:minHeight="150dp"
   >

enter image description here

Ответы [ 3 ]

50 голосов
/ 15 сентября 2011

Я не знаю всех ваших точных требований, но, кажется, вы можете решить это с помощью другого слоя, очень похожего на диаграмму.Установите minHeight на внешнем макете, а затем просто fill_parent / match_parent на внутренней стороне.Может быть что-то вроде:

<LinearLayout
    android:orientation="horizontal"
    android:layout_height="wrap_content"
    android:layout_width="wrap_content"
    android:minHeight="150dp">
    <LinearLayout
        android:orientation="vertical"
        android:layout_height="fill_parent"
        android:layout_width="wrap_content">
    </LinearLayout>
    <ImageView />
</LinearLayout>
7 голосов
/ 05 августа 2014

Сложный вопрос, потому что он вызывает TextView.setMinHeight - но тогда вы не используете TextView .

Так что обычно android:minHeight действительно что-то делает, но нев вашем конкретном случае.

0 голосов
/ 19 февраля 2018

Хотя мой другой ответ остается в силе, в настоящее время у нас есть преимущество ConstraintLayout.Я уверен, что оригинальный постер уже давно преодолел эту проблему, но ради будущих пользователей: вы можете достичь того же результата без дополнительного слоя ViewGroup s.Примерно так:

<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="wrap_content"
    android:minHeight="150dp">

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="0dp"
        android:text="Button1"
        app:layout_constraintBottom_toTopOf="@+id/button2"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <Button
        android:id="@+id/button2"
        android:layout_width="wrap_content"
        android:layout_height="0dp"
        android:text="Button2"
        app:layout_constraintBottom_toTopOf="@+id/button3"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/button1" />

    <Button
        android:id="@+id/button3"
        android:layout_width="wrap_content"
        android:layout_height="0dp"
        android:text="Button3"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/button2" />

    <android.support.constraint.Barrier
        android:id="@+id/barrier"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:barrierDirection="end"
        app:constraint_referenced_ids="button1,button2,button3" />

    <ImageView
        android:id="@+id/image"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="@id/barrier"
        app:layout_constraintTop_toTopOf="parent" />
</android.support.constraint.ConstraintLayout>

Возможно, вам может понадобиться что-то вроде:

    app:layout_constrainedWidth="true"

для ImageView для обработки больших изображений, но я не проверял это.

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