我有一个CustomView
扩展类LinearLayout
。我有另一个类CustomElement
也扩展了LinearLayout
. 当我尝试在 XML 中使用我的类时,什么都没有出现。
这是我的自定义视图类:
private static int NUMBER_OF_ELEMENTS = 4;
public CustomView(final Context context, AttributeSet attrs) {
super(context, attrs);
init(context);
}
private void init(Context context) {
// get size for each element
int width = getWidth() / NUMBER_OF_ELEMENTS;
int height = getHeight() / NUMBER_OF_ELEMENTS;
for (int i = 0; i < NUMBER_OF_ELEMENTS; i++) {
CustomElement element = new CustomElement(context);
addView(element, width, height);
}
}
这是我的自定义元素类:
public CustomElement(final Context context) {
super(context);
m_context = context;
init(context);
}
private void init(Context context) {
LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
inflater.inflate(R.layout.custom_elem, this);
}
当我现在尝试CustomView
在 XML 中添加我的时,它不显示任何内容。这是我的 XML 代码:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/layout_mainleft"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<com.package.views.CustomView
android:id="@+id/layout_elements"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true" />
</RelativeLayout>
我错过了什么吗?任何帮助表示赞赏!