Повторное использование макетов с ConstraintLayout - PullRequest
0 голосов
/ 29 ноября 2018

Я хочу использовать мои основные компоненты макета, такие как кнопки и текстовое представление.Файл main.xml имеет ConstraintLayout, и когда я включаю макет настраиваемого TextView, основной макет полностью игнорирует layout_margins, исправленный в custom_textview.xml.Существует особый способ включить / объединить макет внутри ConstraintLayout.

Основной макет:

<?xml version="1.0" encoding="utf-8"?>
<ScrollView 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_height="match_parent"
    android:layout_width="match_parent"
    android:fillViewport="true" >

    <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">

        <ImageView
            android:id="@+id/profile_image"
            android:layout_width="150dp"
            android:layout_height="0dp"
            android:layout_marginStart="@dimen/default_margin"
            android:layout_marginTop="@dimen/default_top_bottom_parent_margin"
            android:layout_marginEnd="@dimen/default_margin"
            app:layout_constraintDimensionRatio="h,1:1"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent"
            app:srcCompat="@mipmap/ic_launcher_round"
            tools:srcCompat="@tools:sample/avatars" />

        <include
            android:id="@+id/name_surname"
            layout="@layout/standard_textview_layout"
            android:layout_height="56dp"
            android:layout_width="match_parent"/>

    </android.support.constraint.ConstraintLayout>

</ScrollView>

Это макет пользовательского TextView:

<?xml version="1.0" encoding="utf-8"?>
<TextView
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/standard_textview"
    android:layout_width="0dp"
    android:layout_height="@dimen/default_height"
    android:textSize="@dimen/default_text_size"
    android:layout_margin="@dimen/default_margin"
    android:layout_marginBottom="0dp"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf=""
    app:layout_constraintWidth_max="@dimen/default_max_width"
    app:layout_constraintWidth_min="@dimen/default_min_width" />

1 Ответ

0 голосов
/ 29 ноября 2018

Если вы включаете макет, все "параметры раздувания" (ширина, высота, поля, отступы) игнорируются.

Измените корневой элемент во включаемом файле, чтобы объединить и получить TextView там.

<?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <TextView
        android:id="@+id/standard_textview"
        android:layout_width="0dp"
        android:layout_height="@dimen/default_height"
        ... />
</merge>
...