<?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.example.league95.ourownbutton.MainActivity">
<TextView
android:id="@+id/gg"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintHorizontal_bias="1.0"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.0"/>
<Button
android:id="@+id/btn"
android:layout_width="292dp"
android:layout_height="wrap_content"
android:onClick="clickMe"
android:text="Click"
tools:layout_editor_absoluteX="46dp"
tools:layout_editor_absoluteY="231dp"/>
</android.support.constraint.ConstraintLayout>
此代码在模拟器上生成:
然而,当我在我的物理手机上运行我的代码时,我没有得到上面的图像,而是得到如下内容:
无论我以Button
为中心的方式有多少,当我在手机上运行时,它会转到左上角。这仅在ConstraintLayout
由于某种原因发生。是什么给了什么?
答案 0 :(得分:2)
要将按钮置于ConstraintLayout
中心,您必须为Button
小部件定义布局约束。
<Button
android:id="@+id/btn"
android:layout_width="292dp"
android:layout_height="wrap_content"
android:text="Click"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent" />
答案 1 :(得分:2)
<TextView
android:id="@+id/gg"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:text="Hello World!"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<Button
android:id="@+id/btn"
android:layout_width="292dp"
android:layout_height="wrap_content"
android:onClick="clickMe"
android:text="Click"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="@+id/gg" />
</android.support.constraint.ConstraintLayout>