gpt4 book ai didi

android - 从 android 中的另一个 XML 调用 XML 是一种好习惯吗?

转载 作者:行者123 更新时间:2023-11-29 17:12:09 25 4
gpt4 key购买 nike

我是 Android 应用程序开发的新手并且喜欢这个。

从另一个 XML 调用 XML 是好的做法吗?这是否意味着节省应用运行时间?

XML 1(activity_main):

<fragment xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/fragment"
android:name="com.loginfbk.MainFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:layout="@layout/fragment_main" />

XML 2( fragment _主):

<LinearLayout 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"
android:gravity="center"
android:orientation="vertical"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin">

<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:src="@drawable/messenger_button_white_bg_round"/>


</LinearLayout>

最佳答案

是的。有时您想重用 View 。因此,最好的方法是重用 xml View ,而不是多次复制 XML 行。这就是我们在 android 模式中使用 include 标签的原因。

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

在我们的例子中,reusable_view.xml 可以包含要注入(inject)到其他 View 中的任何已定义 View 。

关于android - 从 android 中的另一个 XML 调用 XML 是一种好习惯吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40123195/

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