我从Android Studio v3.1.2更新到了v3.3.2,成功更新了所有内容,备份了项目并创建了一个新项目进行测试。但是我无法在“设计”选项卡中移动任何元素/小部件。我使用的是RelativeLayout,就像我在较早的项目中使用过的那样。在以前的版本中,我可以在任何布局中自由移动,但这似乎不再起作用。
我也看到一些解决方案,切换到ConstraintLayout会有所帮助,我尝试了并工作,但是我对RelativeLayout感到更满意,而我正在研究的项目使用RelativeLayout,这将花费大量时间手动将其更改为ConstraintLayout。因此,有没有像以前一样可以在新版本中使用RelativeLayout的解决方案。
好的,这是layout.xml文件:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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=".MainActivity" />
以下是屏幕截图: screenshot of problem
答案 0 :(得分:0)
通过设置上下左右约束,可以帮助您将视图相对于其他视图放置在布局上。
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="User name"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" android:layout_alignParentEnd="true"
android:layout_marginEnd="184dp" android:layout_alignParentBottom="true"
android:layout_marginBottom="343dp" android:layout_marginTop="369dp"
android:layout_alignParentTop="true"
android:layout_alignParentStart="true" android:layout_marginStart="159dp"/>
还要看一下这个自动生成的代码。