我需要创建一个扩展LinearLayout的视图,以包含一些标准的android小部件。
我创建了一个类MyLinearLayout,它扩展了LinearLayout类。但是现在,如何将其用作xml布局文件中的元素?我无法正常运行,也无法找到有关它的信息,所以我有点困惑... O.O

最佳答案

假设

package com.example;

public class MyLinearLayout extends LinearLayout...


在您的xml中,您可以使用

<com.example.MyLinearLayout
   android:id="@+id/MyLayout"
   [rest of attributes go here]
>
[other stuff here]
</com.example.MyLinearLayout>

07-28 01:01