Android。如何取决于所包含布局的ID

问题描述 投票:0回答:3

我想添加第一个布局

// first_layout.xml
<androidx.constraintlayout.widget.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <TextView
        android:id="@+id/tvFirstLayout"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="First layout text"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

</androidx.constraintlayout.widget.ConstraintLayout>

而且我有第二种布局,其中将包括第一种

<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:app="http://schemas.android.com/apk/res-auto">

    <include layout="@layout/first_layout"/>

    <TextView
        android:id="@+id/tvSecondLayout"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Text of second layout"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintTop_toBottomOf="@id/tvFirstLayout"/> // THIS IS THE QUESTION

</androidx.constraintlayout.widget.ConstraintLayout>

现在问题是使用第一个textView作为第二个textView的约束。有什么解决办法吗?

android android-layout constraints
3个回答
0
投票

您可以为包含标签设置ID

<include android:id="@+id/include" 
         layout="@layout/first_layout"/>

<TextView
    android:id="@+id/tvSecondLayout"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Text of second layout"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintTop_toBottomOf="@id/include"/> // Note you can reference include tag with id

然后引用包含标记及其ID的标记。


0
投票
<include layout="@layout/first_layout"
        android:id="@+id/include"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"/>

现在您可以设置约束。


0
投票

heightwidthid赋予<include>标签,然后可以设置约束。

© www.soinside.com 2019 - 2024. All rights reserved.