如上图所示,当您拖动某些内容时,有对齐选项“至RightOf = button”,“下方= button”,但是当我拖动类似的内容时,将显示。谁能帮我解决这个问题?
<?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"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context=".MainActivity"
tools:showIn="@layout/activity_main">
<TextView
android:id="@+id/text_witaj_uzytkowniku"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/witaj_uzytkowniku" />
</RelativeLayout>
答案 0 :(得分:1)
老实说,我更喜欢使用ConstraintLayout作为根。我相信使用拖放工具会容易得多。
使用它时,请确保all objects are connected to each other(或父级)至少垂直一次和水平一次。 它在代码中的外观:
<androidx.constraintlayout.widget.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">
<TextView
android:id="@+id/textView9"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="24dp"
android:layout_marginTop="24dp"
android:text="TextView"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/textView10"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:text="TextView"
app:layout_constraintStart_toStartOf="@+id/textView9"
app:layout_constraintTop_toBottomOf="@+id/textView9" />
</androidx.constraintlayout.widget.ConstraintLayout>
您还可以使用side panel调整距离。
要使用布局,您只需要在Pallete中键入Constraint layout并将其拖动(如果未安装,将进行下载)
答案 1 :(得分:0)
设置textview
的位置,然后尝试通过拖动添加其他视图
<?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"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context=".MainActivity"
tools:showIn="@layout/activity_main">
<TextView
android:id="@+id/text_witaj_uzytkowniku"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop ="true"
android:layout_alignParentLeft="true"
android:text="@string/witaj_uzytkowniku" />
</RelativeLayout>
答案 2 :(得分:0)
我认为您应该使用CoordinatorLayout而不是Relativelayout。 如果您继续使用Relativelayout,然后转到文件无效并重新启动Android Studio(如果这是与缓存相关的问题),则可以解决该问题。
答案 3 :(得分:0)
使用协调器布局工作。 RelativeLayout更像是编码布局。