Невозможно центрировать PercentRelativeLayout в LinearLayout - PullRequest
0 голосов
/ 23 мая 2018

У меня есть фрагмент, который имеет квадратную камеру (ширина и высота равна ширине экрана), представленную как FrameLayout в PercentRelativeLayout.Под этой камерой находится ImageView, который делает снимок при нажатии.

Я хотел бы центрировать квадратную камеру вертикально (поскольку она уже покрывает ширину экранов), а затем центрировать ImageView под ней в оставшемся пространстве.Это мой XML:

<?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:id="@+id/llCameraFragment"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#000000">

    <android.support.percent.PercentRelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center_vertical">

        <FrameLayout
            android:id="@+id/tvCamera"
            app:layout_widthPercent="100%"
            app:layout_aspectRatio="100%" />
    </android.support.percent.PercentRelativeLayout>

    <LinearLayout
        android:id="@+id/llBelowCamera"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:gravity="center">

    <ImageView
        android:id="@+id/ivCaptureImage"
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:src="@drawable/camerashutter" />
    </LinearLayout>

</LinearLayout>

Проблема в том, что вид с камеры (PercentRelativeLayout) всегда начинается с самой верхней части экрана.Я попытался использовать layout_gravity вместо gravity в PercentRelativeLayout, а также попытался обернуть его вокруг LinearLayout с гравитацией, установленной в center / center_vertical.

Есть идеи, что может быть не так?Цените любые усилия :)

1 Ответ

0 голосов
/ 24 мая 2018

Это то, что вы пытаетесь достичь с помощью ConstraintLayout.Как видите, все гораздо проще и эффективнее.

<android.support.constraint.ConstraintLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:app="http://schemas.android.com/apk/res-auto"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:orientation="vertical">

  <FrameLayout
    android:id="@+id/tvCamera"
    android:layout_width="0dp"
    android:layout_height="0dp"
    app:layout_constraintDimensionRatio="H, 1:1"
    app:layout_constraintTop_toTopOf="parent"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toRightOf="parent"/>

  <ImageView
    android:id="@+id/ivCaptureImage"
    android:layout_width="100dp"
    android:layout_height="100dp"
    app:layout_constraintTop_toBottomOf="@id/tvCamera"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toRightOf="parent"
    />
</android.support.constraint.ConstraintLayout>

Дайте мне знать, если вы в конечном итоге воспользуетесь этим и вам нужна дополнительная помощь

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