2015-04-14 49 views
0

我創建的應用程序可以從應用程序的畫廊基本上選擇一組圖像,把它放在屏幕上,然後調整大小,移動拖動或圖像上的任何東西。應用程序可以拖動大量的圖像

我應該在ImageViews上使用ImageViews和OnTouchListener的簡單FrameLayout/RelativeLayout,還是應該使用畫布並手動處理?有人能告訴我一些方向嗎?

回答

1

。利用這個LIB的https://github.com/thuytrinh/android-collage-views

<com.thuytrinh.android.collageviewsdemo.CollageView 
     android:id="@+id/collageView2" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_centerHorizontal="true" 
     android:layout_centerVertical="true" 
     android:src="@drawable/green" /> 
相關問題