为Android UI创建自定义XML小部件

时间:2010-11-17 18:57:38

标签: android refactoring android-ui android-xml

我正在尝试封装我制作的某些布局,以帮助我干掉我的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”。 是否有任何特定的资源或示例可以帮我弄清楚如何做到这一点?

1 个答案:

答案 0 :(得分:1)