0
Q
菜單按鈕佈局
A
回答
0
這會給你確切的佈局(我在這個佈局中使用ImageButton
S)
我添加滾動視圖,使菜單將滾動在非常小的屏幕上。如果你願意,你可以刪除它。
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="10dp" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:weightSum="2" >
<ImageButton
android:id="@+id/id1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginRight="10dp"
android:layout_marginTop="10dp"
android:layout_weight="1"
android:background="@null"
android:src="@drawable/icon" />
<ImageButton
android:id="@+id/id2"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:layout_weight="1"
android:background="@null"
android:src="@drawable/icon" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:orientation="horizontal"
android:weightSum="2" >
<ImageButton
android:id="@+id/id3"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginRight="10dp"
android:layout_marginTop="10dp"
android:layout_weight="1"
android:background="@null"
android:src="@drawable/icon" />
<ImageButton
android:id="@+id/id4"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginRight="10dp"
android:layout_marginTop="10dp"
android:layout_weight="1"
android:background="@null"
android:src="@drawable/icon" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:orientation="horizontal"
android:weightSum="2" >
<ImageButton
android:id="@+id/id5"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:layout_weight="1"
android:background="@null"
android:src="@drawable/icon" />
<ImageButton
android:id="@+id/id6"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:layout_weight="1"
android:background="@null"
android:src="@drawable/icon" />
</LinearLayout>
</LinearLayout>
</ScrollView>
或者你也可以只使用一個TableLayout
0
可以使用<TableLayout> ... </TableLayout>
例如:http://www.mkyong.com/android/android-tablelayout-example/
相關問題
- 1. 側面菜單上的按鈕佈局
- 2. 菜單按鈕控制隱形佈局
- 3. 使用Android菜單按鈕佈局獲得樂趣
- 4. 如何更改Android菜單按鈕的方向和佈局?
- 5. 我需要覆蓋佈局上浮動操作菜單按鈕
- 6. Android佈局問題。缺少三點菜單按鈕
- 7. Android佈局的菜單填充按鈕的屏幕
- 8. 主菜單佈局
- 9. 佈局和按鈕
- 10. QMessageBox;按鈕佈局
- 11. 菜單按鈕
- 12. 佈局擴大按鈕按
- 13. 單選按鈕列表佈局ASP .Net
- 14. Bootstrap - 單選按鈕的佈局
- 15. 表佈局和按鈕單擊事件
- 16. JSwing簡單按鈕/ JFXPanel佈局
- 17. 引導單選按鈕佈局
- 18. 使水平的單選按鈕佈局
- 19. 按鈕單擊網格佈局中按鈕的偵聽器
- 20. 在單擊按鈕時在父佈局中顯示動畫菜單
- 21. 簡單的佈局問題 - 對齊菜單按鈕,最右邊,中心
- 22. 選項菜單佈局
- 23. 文本菜單佈局
- 24. Bootstrap中的菜單佈局
- 25. Android菜單佈局首頁
- 26. 定製joomla菜單佈局
- 27. NoActionBar菜單按鈕
- 28. Gmail菜單按鈕
- 29. 按鈕菜單Android
- 30. Cocos2D菜單按鈕
你應該表現出你的未來都試過了。 – Neil