Xamarin Android中的部分视图

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

在Xamarin中,Android具备ASP.NET MVC的Partial View之类的功能,在其中可以使用和显示多个axml并将其放置到(1)axml文件中?

c# xamarin.android
1个回答
0
投票

您可以使用<include layout="@layout/titlebar"/>获得结果。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/app_bg"
android:gravity="center_horizontal">

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

</LinearLayout>

如果您想了解更多详细信息,请点击这里。https://developer.android.com/training/improving-layouts/reusing-layouts

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