gpt4 book ai didi

android-layout - 不能在另一个 *.axml 文件中包含 *.axml 文件

转载 作者:行者123 更新时间:2023-12-03 23:17:14 24 4
gpt4 key购买 nike

我想包含 .axml 的布局文件在另一个 .axml使用 xamarin android 但是,
当我使用 <include>它没有显示任何东西。什么相当于<include>单声道 android 中的 android 就像下面的链接:

android reuse layouts

最佳答案

Xamarin.Android(Android 单声道)或原生 Android 的 XML 文件之间没有区别。 axml扩展纯粹是为了触发 VS 和 Xamarin Studio 中的代码完成。 Android 并不关心文件的扩展名是什么。

所以让我展示一个样本,同时显示 <merge><include>标签:

progress_with_text.axml:

<?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android">
<TextView
android:text="Loading..."
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:id="@+id/lblLoading"
android:layout_marginLeft="180dp"
android:layout_marginTop="240dp"/>
<ProgressBar
android:id="@+id/progBar"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_marginLeft="130dp"
android:layout_marginTop="230dp"/>
</merge>

main.axml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<include
layout="@layout/progress_with_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>

这工作得很好!

关于android-layout - 不能在另一个 *.axml 文件中包含 *.axml 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17132887/

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