gpt4 book ai didi

android - 是否可以重用 Android 布局的外部元素?

转载 作者:太空狗 更新时间:2023-10-29 15:59:59 25 4
gpt4 key购买 nike

我有两个非常相似的 Android 布局:

default_spinner.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:minHeight="@dimen/settings_line_min_height"
android:orientation="horizontal"
android:paddingLeft="@dimen/common_padding"
android:paddingRight="@dimen/common_padding">

<TextView
android:id="@id/label"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_weight="1" />

<ImageButton
android:id="@+id/down_spinner_btn"
style="@style/SpinnerDownButton"
android:layout_width="wrap_content"
android:layout_height="match_parent" />

<EditText
android:id="@+id/edit_box"
style="@style/EditableSpinnerText"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:inputType="number"
android:imeOptions="actionDone"
android:longClickable="false" />

<ImageButton
android:id="@+id/up_spinner_btn"
style="@style/SpinnerUpButton"
android:layout_width="wrap_content"
android:layout_height="match_parent" />

</LinearLayout>

custom_spinner.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:paddingLeft="@dimen/common_padding"
android:paddingRight="@dimen/common_padding">

<TextView
android:id="@id/label"
style="@style/Subhead.Translucent"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_weight="1" />

<ImageButton
android:id="@+id/down_spinner_btn"
style="@style/SpinnerDownButton"
android:layout_width="wrap_content"
android:layout_height="match_parent" />

<com.company.CustomEditText
android:id="@+id/edit_box"
style="@style/EditableSpinnerText"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:inputType="text" />

<ImageButton
android:id="@+id/up_spinner_btn"
style="@style/SpinnerUpButton"
android:layout_width="wrap_content"
android:layout_height="match_parent" />

</LinearLayout>

如您所见,两者之间的唯一区别是第二个具有 EditText 类的自定义实现。

在某些类中,我加载默认微调器:

View view = inflater.inflate(R.layout.default_spinner, parent, false);

在其他类中,我加载了自定义微调器:

View view = inflater.inflate(R.layout.custom_spinner, parent, false);

一切正常,但效率低下困扰着我。

我知道可以使用 <import /> 在 Android 中重用布局元素命令...但是,我不确定这是否适用于此。由于这两种布局的大部分是相同的,我想合并相同的代码,并根据情况让它使用 CustomEditText 或 EditText 类。

有没有人知道我如何重用这些布局的外部元素并消除所有重复?

最佳答案

是的,有。在这种情况下,您可以使用一个布局文件,其中包含一个 ViewStub 来代替 EditText/CustomEditText。像这样:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:paddingLeft="@dimen/common_padding"
android:paddingRight="@dimen/common_padding">

<TextView
android:id="@id/label"
style="@style/Subhead.Translucent"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_weight="1" />

<ImageButton
android:id="@+id/down_spinner_btn"
style="@style/SpinnerDownButton"
android:layout_width="wrap_content"
android:layout_height="match_parent" />

<ViewStub
android:id="@+id/view_stub"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1" />

<ImageButton
android:id="@+id/up_spinner_btn"
style="@style/SpinnerUpButton"
android:layout_width="wrap_content"
android:layout_height="match_parent" />

</LinearLayout>

然后,在您的 Java 代码中,您将惰性地注入(inject)您选择的 EditText:

ViewStub viewStub = (ViewStub) findViewById(R.id.view_stub);
viewStub.setLayoutResource(someCondition ? R.layout.custom_edit_text : R.layout.regular_edit_text);
viewStub.inflate();

如您所见,每个 EditText 都有两个布局文件:

自定义编辑文本.xml

<com.company.CustomEditText
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/edit_box"
style="@style/EditableSpinnerText"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:inputType="text" />

regular_edit_text.xml

<EditText
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/edit_box"
style="@style/EditableSpinnerText"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:inputType="text" />

关于android - 是否可以重用 Android 布局的外部元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38753597/

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