Android小部件的位置不正确

时间:2017-07-15 20:58:59

标签: android android-studio

我是Android编程的新手,并开始使用Android Studio开发一个非常简单的应用。但是,使用" Design"在XML文件中查看,窗口小部件未正确放置。

查看图片 - 有两个小部件 - Button和TextView。它们位于" Design"中的不同位置。视图,但它们显示在模拟器的左上角。

为什么会这样?UI snapshot

1 个答案:

答案 0 :(得分:1)

  

您的按钮视图使用的是工具属性,该属性仅适用于预览但不适用于设备,请确保删除它们并使用适当的属性

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:app="http://schemas.android.com/apk/res-auto">

    <TextView
        android:id="@+id/tv"
        android:text="adhfbkj"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintEnd_toEndOf="parent"/>

    <Button
        android:text="button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:layout_constraintTop_toBottomOf="@+id/tv"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintEnd_toEndOf="parent"/>

</android.support.constraint.ConstraintLayout>