1

我需要创建一个 View 来扩展 LinearLayout 以包含一些标准的 android 小部件。我创建了一个类 MyLinearLayout,它扩展了 LinearLayout 类;但是现在,如何将它用作 xml 布局文件中的元素?我无法让它工作,我无法找到有关它的信息,所以我有点困惑...... OO

4

2 回答 2

2

假设

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>
于 2011-05-11T16:15:19.870 回答
1

您必须在它前面加上您正在使用的包名称。因此,您可以声明“[PackageName].MyLinearLayout”,而不是声明“MyLinearLayout”。

于 2011-05-11T16:08:42.243 回答