我发现一个帖子与我的问题类似,但我找不到解决问题所需的答案。请原谅。
我是Android Studio的新用户,这可能听起来像一个愚蠢的问题,但我的所有对象都位于手机的左上角。
这是我的活动主xml文件:
<?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.myapplication.MainActivity">
<TextView
android:id="@+id/textvieww"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Please enter a number"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintHorizontal_bias="0.012"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.052" />
<EditText
android:id="@+id/editText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ems="10"
android:inputType="number"
tools:layout_editor_absoluteX="16dp"
tools:layout_editor_absoluteY="55dp" />
<EditText
android:id="@+id/editText2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ems="10"
android:inputType="number"
tools:layout_editor_absoluteX="16dp"
tools:layout_editor_absoluteY="139dp" />
<Button
android:id="@+id/butonche"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="cukbutonche"
android:text="Button"
tools:layout_editor_absoluteX="61dp"
tools:layout_editor_absoluteY="258dp" />
</android.support.constraint.ConstraintLayout>
如果有人可以帮助我,我会很高兴的。 谢谢!