我在应用程序开发方面有点了解。 我遇到麻烦当我为应用程序布局设计样式时。看起来不错。好像我想要的应用方式。 但是当我试图运行它时,所有应用程序messedup都会跳转到应用程序的左上角,任何人都知道为什么?
这是布局xml代码:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="tech.XXX.LoginA">
<EditText
android:id="@+id/tName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ems="10"
android:hint="Tech name"
android:inputType="textPersonName"
tools:layout_editor_absoluteX="49dp"
tools:layout_editor_absoluteY="49dp" />
<Button
android:id="@+id/bLogin"
android:layout_width="321dp"
android:layout_height="98dp"
android:elevation="0dp"
android:text="Login"
tools:layout_editor_absoluteX="32dp"
tools:layout_editor_absoluteY="151dp" />
</android.support.constraint.ConstraintLayout>
答案 0 :(得分:0)
你应该看看RelativeLayout。我推荐在你的情况下使用RelativeLayout。 https://developer.android.com/guide/topics/ui/layout/relative.html您也可以找到其他教程。