这困扰了我一段时间,我的搜索都没有产生结果。如果我有一个自定义的GUI元素,我可以像普通组件一样使用LayoutInflater来充气。通胀调用导致调用我的自定义GUI元素的构造函数,一切都很好。
但是,如果我想在元素的构造函数中添加自定义参数,该怎么办?有没有办法可以在使用LayoutInflater时传递这个参数?
例如:
在主xml中,我有一个支持我的布局:
<LinearLayout
android:id="@+id/myFrameLayoutHolder"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
</LinearLayout>
和MyFrameLayout.xml文件:
<com.example.MyFrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/MyFLayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1 >
<!-- Cool custom stuff -->
</com.example.MyFrameLayout>
和inflater电话:
LayoutInflater MyInflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
LinearLayout myFLayoutHolder = (LinearLayout) findViewById(R.id.myFrameLayoutHolder);
MyFrameLayout L = ((MyFrameLayout) MyInflater.inflate(R.layout.MyFLayout, myFLayoutHolder, false));
myFLayoutHolder.addView(L);
如果在我的类中扩展了FrameLayout,我向构造函数添加了一个参数,我就崩溃了:
public class MyFrameLayout extends FrameLayout {
private int myInt;
public MyFrameLayout(Context context) {
this(context, null);
}
public MyFrameLayout(Context context, AttributeSet attrs) {
this(context, attrs, 0, 0);
}
public MyFrameLayout(Context context, AttributeSet attrs, int defStyle, int myParameter) {
super(context, attrs, defStyle);
myInt = myParameter;
//Amazing feats of initialization
}
}
现在,通过定义我在布局通胀后立即调用的自定义init方法来解决这个问题很容易,但这对我来说似乎很笨拙。还有更好的方法吗?
答案 0 :(得分:1)
您无法使用自己的参数定义构造函数,因为构造函数签名与FrameLayout自己的构造函数签名冲突而您没有调用super(context, attrs, defStyle);
,而是调用super(context, attrs);
,这对于此构造函数是不完整的。 / p>
您必须完全按原样定义所有三个本机构造函数:
FrameLayout(Context context)
FrameLayout(Context context, AttributeSet attrs)
FrameLayout(Context context, AttributeSet attrs, int defStyle)
您可以做的是在xml中使用您自己的(自定义)属性,然后在MyFrameLayout的 attrs 对象中检索它们
答案 1 :(得分:0)
如果自定义组件是通过XML文件或inflate方法膨胀的话。你不能在构造中传递元素,因为这不是android中的支持。