让我们从有趣的部分开始,这是麻烦的图形。水平,一切都很美。
中间按钮,我想与其他三个对齐。以下是基础知识:
这是XML(只是relativelayout中的linearlayout):
<LinearLayout
android:id="@+id/wideButtons"
android:layout_below="@+id/buttonClockFinish"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:layout_marginLeft="30dp"
android:layout_marginRight="30dp"
android:orientation="horizontal">
<Button
android:id="@+id/buttonLog"
android:layout_weight="1"
android:layout_height="70dp"
android:padding="0dp"
android:layout_marginRight="3dp"
android:layout_width="fill_parent"
android:background="@drawable/custom_button"
android:text="View Log" />
<Button
android:id="@+id/buttonLocation"
android:layout_weight="1"
android:layout_height="70dp"
android:padding="0dp"
android:layout_marginLeft="3dp"
android:layout_marginRight="3dp"
android:layout_width="fill_parent"
android:background="@drawable/custom_button"
android:text="Location\nD1-RS" />
<Button
android:id="@+id/buttonHelp"
android:layout_weight="1"
android:layout_height="70dp"
android:padding="0dp"
android:layout_marginLeft="3dp"
android:layout_width="fill_parent"
android:background="@drawable/custom_button"
android:text="Help" />
</LinearLayout>
那么为什么它不对齐?
答案 0 :(得分:7)
我正准备发布这个问题,做了一个最后的实验。我在按钮上添加了第三行文字。这进一步推低了它。但我意识到它的共同点是中间按钮顶行的文字与两侧按钮的文本完全对齐。
因此,它不是因为内部边缘有问题,无法将文本压在顶部边界上。 对齐是TEXT,而不是按钮图形。一直以来我都认为有一些神秘感:填充,我没有归零,但有三行按钮文字,很高兴只有大约1dp左右的填充。
解决方案是添加
android:layout_gravity="center_vertical"
到那个按钮。我也把它添加到其余的中,只是为了保持一致。
教训:当你认为事情没有调整时,也许它们实际上是,但也许你看错了。