Макет не работает на эмуляторе и устройствах - PullRequest
0 голосов
/ 22 апреля 2019

У меня довольно простой макет, но я не могу заставить его работать.Я попытался возиться с XML, но не могу заставить его работать, должно быть, что-то маленькое.Но потратьте на это уже несколько часов.

Первое изображение - это то, что мне показывает дизайнерская студия, вот так должно выглядеть приложение.

Второе изображение - это то, как приложение выглядит на эмуляторе и реальном устройстве.

Так что, надеюсь, вы, ребята, сможете мне помочь!

Заранее спасибо!

The designer displays the desired layout correctly

This is how the app is being displayed on the emulator and a actual device

Мой макет XML:

<?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"
    tools:context="<appname>.MainActivity">



    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent"
        android:layout_height="match_parent"
        android:orientation="vertical"
        android:weightSum="100"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.5"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent">

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="90">

            <ImageView
                android:id="@+id/imageView3"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center_vertical"
                android:scaleType="fitCenter"
                android:visibility="visible"
                app:srcCompat="@drawable/front_layer2" />

            <ImageView
                android:id="@+id/imageView4"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignBottom="@+id/imageView3"
                android:layout_marginBottom="0dp"
                android:scaleType="fitCenter"
                android:visibility="visible"
                app:srcCompat="@drawable/front_layer1" />
        </RelativeLayout>


        <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
            android:layout_width="fill_parent"
            android:layout_height="50dp"
            android:layout_weight="10"
            android:background="#FFFFFF"
            android:orientation="horizontal">

            <ImageView
                android:id="@+id/infoButton"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                app:srcCompat="@drawable/help" />

            <ImageView
                android:id="@+id/switchButton"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                app:srcCompat="@drawable/icon_replay" />

            <ImageView
                android:id="@+id/logoButton"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                app:srcCompat="@drawable/logo_northair_trans" />
        </LinearLayout>


    </LinearLayout>

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