仅添加第一行时,一切都会顺利进行,但是添加第二行后,它将失败。
pupils=db.getAllPupilsPupil();
events=db.getAllEvents();
TableLayout tableLayout =(TableLayout) findViewById(R.id.table);
bubbleSort(events);
TableRow row= new TableRow(this);
TableRow.LayoutParams lp = new TableRow.LayoutParams(TableRow.LayoutParams.WRAP_CONTENT);
row.setLayoutParams(lp);
TextView tv;
tv = new TextView(this);
tv.setText("events ");
row.addView(tv);
for(int i=0;i<pupils.size();i++) {
tv = new TextView(this);
String name=pupils.get(i).getName()+" ";
tv.setText(name);
tv.setTextColor(getResources().getColor(R.color.colorBlack));
row.addView(tv);
}
tableLayout.addView(row,0);
tableLayout.addView(row,1);
日志猫
进程:com.hazofim.thescouts,PID:17992 java.lang.RuntimeException:无法启动活动ComponentInfo {com.hazofim.thescouts / com.hazofim.thescouts.attendes}:java.lang.IllegalStateException:指定的子级已经有父母了您必须先在孩子的父母上调用removeView()。在android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2817)在android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2892)在android.app.ActivityThread.-wrap11(Unknown Source:0)在android.app。 android.os.Handler.dispatchMessage(Handler.java:105)上的ActivityThread $ H.handleMessage(ActivityThread.java:1593)android.os.Looper.loop(Looper.java:164)上android.app.ActivityThread.main (ActivityThread.java:6541)在com.android.internal.os.Zygote的java.lang.reflect.Method.invoke(本机方法)在com.android.internal.os的com.android.internal.os.Zygote $ MethodAndArgsCaller.run(Zygote.java:240) .ZygoteInit.main(ZygoteInit.java:767)原因:java.lang.IllegalStateException:指定的子代已经有一个父代。您必须先在孩子的父母上调用removeView()。在android.view.ViewGroup.addViewInner(ViewGroup.java:4915)在android.view.ViewGroup.addView(ViewGroup.java:4746)在android.widget.TableLayout.addView(TableLayout.java:427)在android.view。 android.widget.TableLayout.addView(TableLayout.java:409)上的ViewGroup.addView(ViewGroup.java:4686)android.widget.TableLayout.addView(TableLayout)上android.view.ViewGroup.addView(ViewGroup.java:4659)上的.java:400),位于com.hazofim.thescouts.attendes.onCreate(attendes.java:48),位于android.app.Activity.performCreate(Activity.java:6975),位于android.app.Instrumentation.callActivityOnCreate(Instrumentation.java: 1213)在android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2770)在android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2892)在android.app.ActivityThread.-wrap11(Unknown Source:0)在android。 android上的app.ActivityThread $ H.handleMessage(ActivityThread.java:1593)android.os.Handler.dispatchMessage(Handler.java:105)android.os.Looper.loop(Looper.java:164)android .com.android.internal.os.Zygote $ MethodAndArgsCaller.run(Zygote.java:240)的java.lang.reflect.Method.invoke(本机方法)的.app.ActivityThread.main(ActivityThread.java:6541) .android.internal.os.ZygoteInit.main(ZygoteInit.java:767)
答案 0 :(得分:1)
为了防止出现该错误消息:
指定的孩子已经有一个父母。
TableRow
(“指定的孩子”)必须有两个实例,无论它们的重复内容是什么:
for(int i=0; i < pupils.size(); i++) {
TableRow row1 = new TableRow(this);
TableRow row2 = new TableRow(this);
TextView tv = new TextView(this);
tv.setText(pupils.get(i).getName());
tv.setTextColor(getResources().getColor(R.color.colorBlack));
row1.addView(tv);
row2.addView(tv);
tableLayout.addView(row1);
tableLayout.addView(row2);
}
方法.addView()甚至不需要传递index
(默认情况下,它会将项目添加到末尾)。