我有一个ScrollView
包含多个buttons
and textviews
。
我希望insert a new button
在滚动视图中途(索引 3)但得到错误,“ ScrollView can host only one direct child ”
这不可能吗?
Button b = new Button(this);
scrView.AddView(b,3);
???
我有一个ScrollView
包含多个buttons
and textviews
。
我希望insert a new button
在滚动视图中途(索引 3)但得到错误,“ ScrollView can host only one direct child ”
这不可能吗?
Button b = new Button(this);
scrView.AddView(b,3);
???