我有一个简单的XML布局,我想在右下角放置一个Button。
我第一次尝试android:layout_gravity="bottom|right"
然而,结果是按钮向右侧倾斜,而不是向下倾斜。
然后我尝试了“中心”并且有效,但它与“底部”结合使用时保持不变。
似乎某些东西阻止了按钮从底部移开。
感谢任何帮助。
答案 0 :(得分:3)
放置按钮的布局具有重力属性,可以为您提供此效果。例如:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent" android:gravity="bottom|right">
<Button android:layout_width="wrap_content"
android:layout_height="wrap_content"></Button>
</LinearLayout>
答案 1 :(得分:1)
您放置此按钮的布局可能不会显示在屏幕底部。
使用hierarchyviewer查看发生的情况。 Cesar发布的代码应该会给你一些实际工作......
答案 2 :(得分:1)
使用RelativeLayout而不是LinearLayout。它不仅真正做你想做的事情,而且实际上使用的处理更少,并且比LinearLayout更快地显示。
使用RelativeLayout定义您的空间,而不是LinearLayout,如:
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
然后,要将按钮放在右下方,请将其添加到按钮:
<Button android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
/>
干杯, 斯科特
PS:一如既往,我还没有测试过这段代码,只是输入我记得的东西。