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