<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 将是空的。像切割操作。我能怎么做?