Android макет в предпросмотре отличается, когда я запускаю приложение - PullRequest
0 голосов
/ 14 апреля 2020

Я создал приложение с фрагментом и утилита-утилитой внутри.

Макет фрагмента - это

<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:app="http://schemas.android.com/apk/res-auto">

    <data>

        <variable
            name="homeViewModel"
            type="com.phatedev.eliquidcalculator.ui.home.HomeViewModel" />
    </data>

    <androidx.constraintlayout.widget.ConstraintLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <androidx.recyclerview.widget.RecyclerView
            android:id="@+id/e_liquid_list"
            app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
            android:layout_width="0dp"
            android:layout_height="0dp"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent"
            app:listData="@{homeViewModel.eLiquids}"
            tools:listitem="@layout/list_e_liquid_item" />

    </androidx.constraintlayout.widget.ConstraintLayout>
</layout>

, а макет отдельной строки list_e_liquid_item -

<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools">

    <data>

        <variable
            name="eLiquid"
            type="com.phatedev.eliquidcalculator.domains.ELiquid" />
    </data>

    <com.google.android.material.card.MaterialCardView
        android:layout_width="match_parent"
        android:layout_height="120dp"
        android:layout_margin="8dp"
        android:backgroundTint="#00AA44">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical"
            android:padding="16dp">

            <!-- Title, secondary and supporting text -->
            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="@{eLiquid.name}"
                tools:text="Banana, Fragola, Ananas"
                android:textAppearance="?attr/textAppearanceHeadline6" />

            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="8dp"
                android:text="@{eLiquid.description}"
                tools:text="https://www.netflix.com/watch/80111460?trackId=155573558"
                android:textAppearance="?attr/textAppearanceBody2"
                android:textColor="?android:attr/textColorSecondary" />

            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="16dp"
                android:text="@{eLiquid.base}"
                tools:text="80/20"
                android:textAppearance="?attr/textAppearanceBody2"
                android:textColor="?android:attr/textColorSecondary" />

        </LinearLayout>

    </com.google.android.material.card.MaterialCardView>

</layout>

В Android Studio Preview все выглядит идеально, как вы можете видеть на этом скриншоте, который я беру Android Studio enter image description here

, но когда я запускаю приложение на эмуляторе макет сломан, и я не понимаю, что я делаю неправильно enter image description here

РЕДАКТИРОВАТЬ:

app:listData="@{homeViewModel.eLiquids}" в RecyclerView это функция привязки

@BindingAdapter("listData")
fun bindRecyclerView(recyclerView: RecyclerView, data: List<ELiquid>?) {
    val adapter = recyclerView.adapter as ELiquidAdapter
    adapter.submitList(data)
}

РЕДАКТИРОВАТЬ: Хорошо, я нашел решение моей проблемы здесь , но кто-то может объяснить мне, почему это работает?

Ответы [ 3 ]

0 голосов
/ 14 апреля 2020

попробуйте изменить свою активность. xml

    <com.google.android.material.navigation.NavigationView
        android:id="@+id/nav_view"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:fitsSystemWindows="true"
        app:headerLayout="@layout/nav_header_main"
        app:menu="@menu/activity_main_drawer" />

до

    <com.google.android.material.navigation.NavigationView
        android:id="@+id/nav_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:fitsSystemWindows="true"
        app:headerLayout="@layout/nav_header_main"
        app:menu="@menu/activity_main_drawer" />
0 голосов
/ 19 апреля 2020

На самом деле, я также столкнулся с такой же проблемой, она выглядит нормально при предварительном просмотре, во время запуска ii он начинает оборачиваться, поэтому я сделал следующее. Пожалуйста, добавьте фиктивный Match_parent View, как показано ниже, в свой линейный макет файла list_e_liquid_item.

<View android:layout_width=match_parent android :layout_height= 1dp />

Пожалуйста, дайте мне знать, если это работает.

0 голосов
/ 14 апреля 2020

Он также отличается от телефона к другому из-за различий в плотности

отредактируйте макет, чтобы он соответствовал ширине

 <com.google.android.material.card.MaterialCardView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_margin="8dp"
        android:backgroundTint="#00AA44">
...