<Button
android:id="@+id/bintent"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Activity"
tools:layout_editor_absoluteY="132dp"
tools:layout_editor_absoluteX="136dp" />
<Button
android:id="@+id/balram1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Alarm"
android:layout_centerInParent="true"
tools:layout_editor_absoluteY="231dp"
tools:layout_editor_absoluteX="136dp" />
`
那么我应该怎么做才能在实际设备上出现
答案 0 :(得分:0)
如果没有完整的xml文件,几乎不可能知道发生了什么。我假设父布局是RelativeLayout,因为你正在使用centerInParent属性,但我不确定你为什么使用绝对的X和Y值。他们甚至不会做任何事情,因为“tools”命名空间仅用于布局编辑器。它根本不会影响应用程序。
我最好的猜测是,您将父布局的宽度和高度设置为“wrap_content”而不是“match_parent”,否则您的“警报”按钮将在屏幕上正确居中。
答案 1 :(得分:0)
您遇到的问题是您使用了tools:layout_editor_absoluteX
和tools:layout_editor_absoluteY
attribitues。以tools
开头的属性仅适用于布局设计器。
如果你想让按钮居中,你应该做的是使用相对布局作为父元素,在其中你可以放置按钮。所以它应该是这样的:
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:id="@+id/button3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button"
android:layout_below="@+id/button2"
android:layout_centerHorizontal="true"
android:layout_marginTop="36dp"/>
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button"
android:layout_alignParentTop="true"
android:layout_alignStart="@+id/button3"
android:layout_marginTop="42dp"/>
</RelativeLayout>
答案 2 :(得分:0)
像所有其他答案一样,我也不确定您使用的是哪种父布局,但在我看来是约束布局。如果是,则使用以下代码:)
<?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:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:id="@+id/bintent"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Activity"
android:layout_marginLeft="8dp"
app:layout_constraintLeft_toLeftOf="parent"
android:layout_marginRight="8dp"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
android:layout_marginTop="150dp" />
<Button
android:id="@+id/balram1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Alarm"
android:layout_centerInParent="true"
android:layout_marginLeft="8dp"
app:layout_constraintLeft_toLeftOf="parent"
android:layout_marginRight="8dp"
app:layout_constraintRight_toRightOf="parent"
android:layout_marginTop="61dp"
app:layout_constraintTop_toBottomOf="@+id/bintent" />
</android.support.constraint.ConstraintLayout>