-1
<LinearLayout
    android:id="@+id/linear1"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#FF4D00"
    android:orientation="vertical" >

    <Button
        android:id="@+id/button1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="Button" />
</LinearLayout>

<LinearLayout
    android:id="@+id/linear2"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#FF4D00"
    android:orientation="vertical" >
</LinearLayout>

我想将@button1 移动到@linear2 中,并且属于button1 的属性不能丢失,包括click lisener。然后,@linear1 将是空的。像切割操作。我能怎么做?

4

1 回答 1

-1

您需要从您的活动类中务实地添加和删除按钮

这可能有助于 从布局中添加和删除视图

于 2013-04-18T03:51:19.117 回答