我想動態添加imageViews像圓盤一樣的圓。 Android的劑量不提供圓形佈局,所以請幫我創建一個圓形的佈局.. 在此先感謝!在Android中動態添加imageViews的圓形佈局
1
A
回答
1
只是檢查了這一點,這個鏈接顯示如何使視圖圓形...只是imlement自己的倒影視圖...
http://developer.samsung.com/android/samples-4
,或者您可以通過XML做到這一點:
<LinearLayout orientation=vertical for whole screen>
<LinearLayout weight=1 gravity=center> <!--- Top --->
</LinearLayout>
<LinearLayout weight=1 orientation=horizontal> <!-- middle -->
<LinearLayout weight=1 gravity=left/>
<LinearLayout weight=1 gravity=right/>
</LinearLayout>
<LinearLayout weight=1> <!-- botton -->
<LinearLayout weight=1 gravity=center/>
<LinearLayout weight=1 gravity=center/>
</LinearLayout>
</LinearLayout>
1
您不需要特殊的佈局。您可以使用相對佈局或相框佈局。
只需以常規方式動態添加視圖,但使用邊距,填充等來定位它們,使它們看起來像一個圓圈。
+0
我知道,但我需要填充和保證金感謝的邏輯 – 2013-02-21 08:04:00
0
您可以使用HorizontalScrollView。
1
相關問題
- 1. 動態添加imageViews到線性佈局
- 2. 動態佈局imageViews
- 3. 使用ImageViews的圓形佈局
- 4. Android中的圓形佈局
- 5. 滾動的圓形佈局
- 6. 圓形線性佈局android
- 7. 單面圓形Android佈局
- 8. Android創建圓形佈局
- 9. 在Android中重置圓形佈局
- 10. 在相對佈局動態顯示多ImageViews的Android
- 11. 動態添加父佈局並動態添加子佈局
- 12. 將ImageViews添加到垂直佈局
- 13. Android中的圓形佈局設計ui
- 14. 圓形可滾動佈局
- 15. 圓形佈局
- 16. Android無法動態添加新佈局
- 17. 動態添加多個佈局android
- 18. Android - 添加動態xml到佈局
- 19. Android:動態添加按鈕佈局
- 20. VivaGraphJS中的圓形佈局
- 21. android-圓形矩形邊界爲佈局
- 22. 動態添加布局
- 23. 如何在android中的ViewGroup中添加動態佈局?
- 24. 在Android中加載動態佈局
- 25. 在Android中動態加載佈局
- 26. 在佈局中添加填充的動態佈局問題
- 27. 如何在圓形佈局中動態修復圖像?
- 28. Android佈局動態添加兒童佈局
- 29. android:在RelativeLayout中保留屬性children動態添加ImageViews
- 30. 半圓形佈局
檢查我的編輯答案... – 2013-02-21 08:14:07