请看图片。我该如何解决这个错误?我尝试安装其他几个设备,检查硬件与软件图形的一些功能。 TIA
<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="haroonahmad.berkeleysucksapp.MainActivity">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Berkeley Admisions"
android:textSize="24sp"
tools:layout_editor_absoluteY="88dp"
tools:layout_editor_absoluteX="88dp" />
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="0"
tools:layout_editor_absoluteX="16dp"
tools:layout_editor_absoluteY="335dp" />
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="0"
tools:layout_editor_absoluteX="268dp"
tools:layout_editor_absoluteY="335dp" />
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Points: 0"
tools:layout_editor_absoluteX="163dp"
tools:layout_editor_absoluteY="415dp" />
<RelativeLayout
android:layout_width="0dp"
android:layout_height="495dp"
tools:layout_editor_absoluteY="8dp"
tools:layout_editor_absoluteX="8dp">
</RelativeLayout>
编辑:抱歉,我是一个全新的添加代码,没有意识到我只能添加到第一篇文章。
我尝试将两个地方的ConstraintLayout更改为RelativeLayout,但没有工作。然后尝试右键单击资源文件并将布局和布局更改为RelativeLayout,但仍然无法正常工作。感谢您的任何进一步建议
答案 0 :(得分:0)
您可能使用的根布局与您在其他视图中设置的对齐方式不匹配。尝试使用RelativeLayout作为根布局。
也许如果您发布XML布局,我们就更容易识别问题。
答案 1 :(得分:0)
好的我通过将xmlns之前的整个文本更改为RelativeLayout来修复它。谢谢你的提示!