我有两个非常相似的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类。
有没有人知道我如何重用这些布局的外部元素并消除所有重复?
答案 0 :(得分:6)
是的,有。在这种情况下,您可以使用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>
的单个布局文件。像这样:
EditText
然后,在您的Java代码中,您将懒惰地注入您选择的ViewStub viewStub = (ViewStub) findViewById(R.id.view_stub);
viewStub.setLayoutResource(someCondition ? R.layout.custom_edit_text : R.layout.regular_edit_text);
viewStub.inflate();
:
EditText
如您所见,每个<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" />
还有两个布局文件:
<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" />
split
答案 1 :(得分:1)
我认为,最好的方法是使用单一布局以编程方式添加不同的视图。这就是将来如何更容易支持。