안드로이드 개발 질문/답변
(글 수 45,052)
<AbsoluteLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
>
<ImageView
android:id="@+id/image1"
android:layout_width="128px"
android:layout_height="128px"
android:layout_x="0px"
android:layout_y="0px"
/>
<ImageView
android:id="@+id/image2"
android:layout_width="128px"
android:layout_height="128px"
android:layout_x="128px"
android:layout_y="0px"
/>
<AbsoluteLayout/>
이미지가 2개가 있습니다. 이미지드래그시 2개의 이미지가 같이 움직이고 싶습니다.
AbsoluteLayout자체를 이동하거나
ImageView2개를 for문을 사용하여 돌리면 될거같은데 답변부탁드립니다..(__)



