我正在尝试封装我制作的某些布局,以帮助我干掉我的android xml ui文件。
我有以下代码:
<LinearLayout
android:id="@+id/LinearLayout02"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:orientation="horizontal">
<TextView
style="@style/text_view_small"
android:id="@+id/time"></TextView>
<TextView
style="@style/text_view_small"
android:id="@+id/number_of_worlds">
</TextView>
</LinearLayout>
我想简单地将其转换为以下
<DoubleTextView></DoubleTextView>
一旦完成,我希望能够在其他xml文件中使用“widgit”。 是否有任何特定的资源或示例可以帮我弄清楚如何做到这一点?