好的。所以我在Main中开始我的活动,抓住FragmentManager并实例化一个需要返回View的Fragment。好。所以我扩展了一个LinearLayout以便有一些东西可以返回。我的活动和片段很高兴,但我不是。
我在父ViewGroup中创建的三个LinearLayouts(下面的代码)。我通过计算儿童并通过设置背景颜色来相互对比来验证这一点。父母也会改变大小,具体取决于我对孩子的高度(当我没有在父母身上声明任何LayoutParams时)。
public class Mainmenu extends LinearLayout {
private ArrayList<LinearLayout> panes = new ArrayList<LinearLayout>();
private Context context;
private final int
LEFT = 0, CENTER = 1, RIGHT = 2;
public Mainmenu(Context c) {
super(c);
context = c;
setBackgroundColor(Color.WHITE);
setOrientation(HORIZONTAL);
setLayoutParams(
new LinearLayout.LayoutParams(
LinearLayout.LayoutParams.FILL_PARENT,
LinearLayout.LayoutParams.FILL_PARENT));
for(int i=0;i<=RIGHT;i++){ //Create the (3) Panes
LinearLayout ll = new LinearLayout(context);
ll.setLayoutParams(
new LinearLayout.LayoutParams(300,
LinearLayout.LayoutParams.FILL_PARENT));
switch(i){
case LEFT | RIGHT:
ll.setBackgroundColor(Color.DKGRAY);
default:
ll.setBackgroundColor(Color.BLACK);
}
ll.setOrientation(LinearLayout.VERTICAL);
ll.setVisibility(VISIBLE);
ll.setWillNotDraw(false);
panes.add(i, ll);
addView(ll);
}
LinearLayout.LayoutParams buttons =
new LinearLayout.LayoutParams(100, 50);
buttons.setMargins(15, 5, 5, 0);
TextView tv1 = new TextView(context);
tv1.setText("hello");
tv1.setTextColor(Color.RED);
panes.get(LEFT).addView(tv1, buttons);
Button button = new Button(context);
button.setText("Launch Editor");
button.setOnClickListener(new View.OnClickListener() {
public void onClick(View v){
}
});
panes.get(CENTER).addView(button);
}
@Override
protected void onLayout(boolean changed, int l, int t, int r, int b) {
// TODO Auto-generated method stub
}
}
Nothing为null,我的所有元素(3个ViewGroups和2个Views)都存在于树中但不可见。我已经尝试通过父母和孩子将孩子带到前面,用不同的超级方法创建它们,并以类似的猎枪方式使视图无效。这是怎么回事?是不是很清楚我不知道自己在做什么?
答案 0 :(得分:3)
问题只是因为你要覆盖onLayout并且不做任何事情。如果您想自己布局孩子(即,您正在设计一些独特的自定义布局),您只需要覆盖它。在这种情况下,只需删除该方法,或调用super.onLayout。