为什么我的模拟器没有显示与xml设计视图相同的布局

时间:2019-06-03 15:27:17

标签: android-studio

正如您在我提供的图片中看到的那样,在设计视图中,船上方有很多部分,但是只有一部分在模拟器上显示。因此,我放置在该部分中的所有文本视图都不会显示。我希望我的模拟器显示我在设计视图中看到的确切布局。如何实现? enter image description here 在过去的四个星期中,我一直在独自学习,而我总是最终会遇到此类问题。 我已经经历过以前的帖子o stackoverflow。没有人帮助我解决问题。 我已经尝试了相对布局和约束布局。

    <?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=".MainActivity">

    <ImageView
        android:id="@+id/imageView"
        android:layout_width="395dp"
        android:layout_height="731dp"
        android:layout_marginStart="8dp"
        android:layout_marginLeft="8dp"
        android:layout_marginEnd="8dp"
        android:layout_marginRight="8dp"
        android:layout_marginBottom="8dp"
        android:scaleType="fitXY"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.0"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintVertical_bias="0.0"
        app:srcCompat="@drawable/background" />
    </android.support.constraint.ConstraintLayout>

0 个答案:

没有答案