<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将是空的。喜欢切割操作。我该怎么办?