我正在尝试将两个按钮放在另一个按钮之下,并使用一些填充。不幸的是,底部填满了整个屏幕并落后于顶部屏幕。 :-S
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="6dip">
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
android:padding="6dip"
android:layout_weight="1">
<ImageButton
android:layout_width="wrap_content"
android:src="@drawable/gallery"
android:layout_height="wrap_content"
android:scaleType="centerInside"
android:id="@+id/gallery_btn"></ImageButton>
</LinearLayout>
<LinearLayout
android:id="@+id/linearLayout2"
android:orientation="horizontal"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:padding="6dip"
android:layout_weight="1">
<ImageButton android:id="@+id/camera_btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/camera"
android:scaleType="centerInside" />
</LinearLayout>
</LinearLayout>
答案 0 :(得分:5)
Roman Nurik(@romannurik)编写了一个自定义Dashboard Layout类,简化了创建仪表板的过程:您可以在https://gist.github.com/882650找到它
答案 1 :(得分:3)
我写过一篇关于仪表板实现的简短博文,你可能(希望)发现它很有帮助。您也可以从这里找到准备好的代码: http://www.androiduipatterns.com/2011/01/implementing-dashboard-and-action-bar.html