您可能具有具有以下属性的微件:
tools:layout_editor_absoluteX="someValue"
tools:layout_editor_absoluteY="someValue"
tools
命名空间仅在开发时使用,并且在安装apk时将被删除,因此所有布局都可能显示在左上角的位置。查看工具属性参考
要解决此问题:您应该使用布局约束,例如:
layout_constraintLeft_toLeftOf
layout_constraintLeft_toRightOf
layout_constraintRight_toLeftOf
layout_constraintRight_toRightOf
layout_constraintTop_toTopOf
layout_constraintTop_toBottomOf
layout_constraintBottom_toTopOf
layout_constraintBottom_toBottomOf
layout_constraintBaseline_toBaselineOf
layout_constraintStart_toEndOf
layout_constraintStart_toStartOf
layout_constraintEnd_toStartOf
layout_constraintEnd_toEndOf
您可以浏览 ConstraintLayout 的文档并使用 ConstraintLayout 构建响应式 UI 以获取更多详细信息
编辑:
从您发布的图片中,我尝试使用以下代码添加适当的约束,以便TextView处于中心位置:
<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">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TextView"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</android.support.constraint.ConstraintLayout>