布局在模拟器和设备上不起作用

时间:2019-04-22 14:01:10

标签: android layout

我的布局非常简单,但似乎无法正常工作。 我尝试弄乱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>

0 个答案:

没有答案