对话框中的按钮贴在底部

时间:2013-07-15 11:28:37

标签: android

我正在为我的应用程序构建一个自定义对话框。执行此操作时,我的“确定”和“取消”按钮将直接显示在此视图的底部,即对话框的底部边缘。如何将它们向上拉一点,以便按钮和对话框底边之间有一点间隙。 我的XML代码如下:

<TextView
    android:id="@+id/settingsview"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="18dp"
    android:text="Select Settings" />

<RadioButton
    android:id="@+id/onemin"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignLeft="@+id/settingsview"
    android:layout_below="@+id/settingsview"
    android:layout_marginTop="14dp"
    android:text="@string/radio_one" />

<RadioButton
    android:id="@+id/twomin"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignLeft="@+id/onemin"
    android:layout_below="@+id/onemin"
    android:text="@string/radio_two" />

<RadioButton
    android:id="@+id/tenmins"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignLeft="@+id/twomin"
    android:layout_below="@+id/twomin"
    android:text="@string/radio_three" />

<Button
    android:id="@+id/set"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignRight="@+id/onemin"
    android:layout_below="@+id/tenmins"
    android:layout_marginRight="54dp"
    android:layout_marginTop="30dp"
    android:background="@drawable/custom_btn_livid_brown"
    android:text="@string/submit_btn" />

<Button
    android:id="@+id/cancel"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignBaseline="@+id/set"
    android:layout_alignBottom="@+id/set"
    android:layout_toRightOf="@+id/twomin"
    android:background="@drawable/custom_btn_livid_brown"
    android:text="@string/cancel" />

2 个答案:

答案 0 :(得分:0)

你尝试过使用重力吗?当我在定位我的小部件时遇到问题时,这是我的解决方案。

基本上,你需要一些父“容器”,你的按钮所在的位置,然后通过改变你的小部件的容器内的重力来定位它们。

Vogella有一个关于这个主题的好教程!!

vogella-tutorial

答案 1 :(得分:0)

虽然您未在此处提供完整代码。不确定是否在LinearLayoutRelativeLayout中使用上述内容。但正如您所说..

  

我怎样才能将它们拉一点,以便之间存在微小的差距   按钮和对话框的底边

所以我认为android:layout_marginTop=""可以解决这些问题 使用

android:layout_marginTop="10dp" //change this value according to you need

如果你想把你的按钮向左移动而不是向右移动然后改变..

android:layout_marginRight="30dp" //change this value according to you need

我在这里展示了2个如何改善这些条件的例子。如果您仍然遇到问题,请在此处发布完整的 xml 代码,以便我可以在我的环境中对其进行测试。