<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 に属する属性は失われず、クリック リスナーが含まれます。次に、@linear1 は空になります。カット操作など。どのようにできるのか?