1
A
回答
0
使用以下佈局來實現。根據您的要求修改。
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="100dp"
android:layout_below="@+id/text" >
<ImageView
android:id="@+id/img1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/img2"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_marginLeft="20dp"
android:src="@drawable/ic_action_search" />
<ImageView
android:id="@+id/img2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="30dp"
android:layout_marginTop="30dp"
android:layout_toLeftOf="@+id/img3"
android:src="@drawable/ic_action_search" />
<ImageView
android:id="@+id/img3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:src="@drawable/ic_action_search" />
<ImageView
android:id="@+id/img4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="30dp"
android:layout_marginTop="30dp"
android:layout_toRightOf="@+id/img3"
android:src="@drawable/ic_action_search" />
<ImageView
android:id="@+id/img5"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/img4"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:layout_marginRight="20dp"
android:src="@drawable/ic_action_search" />
</RelativeLayout>
1
相關問題
- 1. 安排BlackBerry應用程序
- 2. 應用程序安裝兩個圖標
- 3. 如何啓動應用程序的圖標是安排在列表中查看
- 4. 從屏幕截圖中排除覆蓋應用程序圖標
- 5. Visual Studio安裝程序項目:安裝程序和應用程序圖標
- 6. Ruby應用程序中的鏈輪:: FileNotFound
- 7. 如何檢索已安裝的應用程序中的圖標
- 8. Android:安裝新的HelloWorld應用程序,重置一些應用程序圖標
- 9. 在Unity中獲取Android安裝的應用程序圖標
- 10. iPhone應用程序中的應用程序圖標徽章
- 11. 通過Web應用程序安排SSIS
- 12. facebook應用程序:安排任務
- 13. 安排iPhone應用程序執行
- 14. 安排在Web應用程序
- 15. BREW中的日程安排應用程序
- 16. 安排SharePoint工作流程中的一個應用程序
- 17. Binary中的iPhone應用程序圖標
- 18. Python中的應用程序圖標3
- 19. Windows Market中的應用程序圖標
- 20. 應用程序中的圖標菜單
- 21. JavaFX中的應用程序圖標
- 22. Google Play中的應用程序圖標
- 23. WPF應用程序中滾動滾輪
- 24. 安裝Android應用程序後不會出現應用程序圖標
- 25. 使用xamarin更改已安裝應用程序的圖標
- 26. 用python和pip輪安裝Azure web應用程序
- 27. MacRuby應用程序圖標
- 28. .NET應用程序圖標
- 29. Android應用程序圖標
- 30. 應用程序圖標
您可以使用「RelativeLayout」並給出可設置的邊距。 –
你可以把它們放在一個「桌子」或類似的東西嗎?這樣可以控制圖像之間的空間。 'GridView'也是一種選擇。 – g00dy
@Dhivya使用絕對佈局來創建此設計。你可以修復你的圖標基於x,y的位置 –