<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center"
android:orientation="vertical"
android:padding="6dp"
android:weightSum="1.0" >
<Button
android:id="@+id/btnCreateNewMonth"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="center_vertical|center"
android:layout_weight="0.5"
android:onClick="btnCreateNewMonth_clickHandler"
android:paddingBottom="5dp"
android:text="@string/btn_create_new_month" />
<Button
android:id="@+id/btnLoadExistingMonth"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="center_vertical|center"
android:layout_weight="0.5"
android:onClick="btnLoadExistingMonth_clickHandler"
android:text="@string/btn_load_existing_month" />
</LinearLayout>
パディングはすべての辺で 6 dp にする必要があります。しかし、上部には、アプリのタイトルとレイアウトの間に小さなパディングがあります?! その解決策は何ですか??
ありがとう。