Android Studio预览不一样

时间:2017-07-26 23:53:49

标签: android xml android-studio android-layout

我是Android Studio新手,所以我需要一些帮助。我正在研究2.3.3。因此预览与我在实际模拟器上获得的视图不匹配。请帮忙。

预览图片

enter image description here

模拟器图像

enter image description here

    <?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"
    android:background="#006699"
    tools:context="a.myapplication.MainActivity">

    <TextView
        android:id="@+id/textView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="My App"
        android:textColor="#ffffff"
        android:textSize="85px"
        tools:ignore="MissingConstraints"
        tools:layout_editor_absoluteX="100dp"
        tools:layout_editor_absoluteY="264dp" />
</android.support.constraint.ConstraintLayout>

1 个答案:

答案 0 :(得分:0)

  

删除工具:xml中的属性作为预览中唯一的工作

  <TextView
        android:id="@+id/textView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="My App"
        android:textColor="#ffffff"
        android:textSize="85px"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintBottom_toBottomOf="parent"
        />

This is good article for constraint layout