将linearlayout动态添加到Relativelayout中

时间:2013-03-12 20:48:53

标签: java android relativelayout

我有这段代码,我想在嵌入在RelativeLayout内部的ScrollView内嵌的LinearLayout中动态添加CheckBoxes(RelativeLayout-> ScrollView-> LinearLayout-> My ChechBoxes)

li = (RelativeLayout) findViewById(R.id.mainlayout);    
ScrollView sv = new ScrollView(this);
final LinearLayout ll = new LinearLayout(this);
ll.setOrientation(LinearLayout.VERTICAL);
li.addView(sv);
sv.addView(ll);
for(int i = 0; i < 20; i++) {
    CheckBox cb = new CheckBox(getApplicationContext());
    cb.setText("I'm dynamic!");
    ll.addView(cb);
}
this.setContentView(sv);

但是我收到了这个错误:

03-12 20:32:14.840: E/AndroidRuntime(945): Caused by: java.lang.IllegalStateException: The specified child already has a parent. You must call removeView() on the child's parent first.

我的RelativeLayout已经在我的XML文件中声明了 我怎么能解决这个问题?

2 个答案:

答案 0 :(得分:2)

this.setContentView(sv);

这会尝试将您的ScrollView添加到FrameLayout android.R.id.content,但您已将li作为sv的父级...因此“指定的子级已有父级。”< / p>

我相信您可以删除 this.setContentView(sv); ,因为看起来您只想将ScrollView(等)添加到RelativeLayout,而不是替换整个现有布局。

答案 1 :(得分:0)

检查http://developer.android.com/training/animation/screen-slide.html 下载示例应用程序时,请浏览LayoutChangesActivity.java

以下是添加项目的代码..

private void addItem() {
    // Instantiate a new "row" view.
    final ViewGroup newView = (ViewGroup) LayoutInflater.from(this).inflate(
            R.layout.list_item_example, mContainerView, false);

    // Set the text in the new row to a random country.
    ((TextView) newView.findViewById(android.R.id.text1)).setText(
            COUNTRIES[(int) (Math.random() * COUNTRIES.length)]);

    // Set a click listener for the "X" button in the row that will remove the row.
    newView.findViewById(R.id.delete_button).setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View view) {
            // Remove the row from its parent (the container view).
            // Because mContainerView has android:animateLayoutChanges set to true,
            // this removal is automatically animated.
            mContainerView.removeView(newView);

            // If there are no rows remaining, show the empty view.
            if (mContainerView.getChildCount() == 0) {
                findViewById(android.R.id.empty).setVisibility(View.VISIBLE);
            }
        }
    });

    // Because mContainerView has android:animateLayoutChanges set to true,
    // adding this view is automatically animated.
    mContainerView.addView(newView, 0);
}