我正在使用Android Studio。当我尝试执行我的演示应用程序时,组件将从其原始位置更改。为什么呢?
<?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="com.kasamsp.myfirstapp.MainActivity">
<TextView
android:layout_width="wrap_content"
android:layout_height="40dp"
android:text="Hi world"
android:textColor="#000000"
android:textColorLink="@android:color/black"
android:textSize="30sp"
android:textStyle="bold"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintHorizontal_bias="0.456"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.424" />
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button"
tools:layout_editor_absoluteX="137dp"
tools:layout_editor_absoluteY="258dp" />
</android.support.constraint.ConstraintLayout>
答案 0 :(得分:1)
您正在使用ConstraintLayout。如果要继续使用它,则必须对放置在UI中的每个窗口小部件设置约束。我个人会建议你使用RelativeLayout,如果你不熟悉Android开发,直到找出所有的布局。 改变这个
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android">
和
</android.support.constraint.ConstraintLayout>
到
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android">
和
</RelativeLayout>