gpt4 book ai didi

Android:如何使用包含布局的工具

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:55:53 24 4
gpt4 key购买 nike

我如何使用工具:

xmlns:tools="http://schemas.android.com/tools"

<include>

我有一个布局A我使用工具用测试数据填充所有文本字段。我有布局 B使用 include将布局 A 复制到其中。当我这样做时,我怎么看不到 A 的测试数据? .

如何查看A的测试数据包含在 B 中?

*两种布局都有xmlns:tools="http://schemas.android.com/tools ,我什至将其推送到布局标签。

最佳答案

检查此链接,Android tools attributes .它应该让您了解如何使用工具属性。具体看tools:showIn属性。它基本上允许您在 layout_B 中呈现 layout_A,其中 layout_B 具有 <include layout="@layout/layout_A"/>。在 xml 中的某处。

这是一个例子:

layout_A

<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:showIn="@layout/layout_B"
>

<!-- Your layout code goes here -->

</RelativeLayout>

layout_B

<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
>

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

<!-- Your layout code goes here -->

</RelativeLayout>

关于Android:如何使用包含布局的工具,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23943184/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com