用户界面-安卓系统:使用RelativeLayout将两个切换按钮一个放在另一个下面的问题



我在切换按钮方面遇到了一个奇怪的问题。我想将它们水平居中,并使用相对布局将它们一个放在另一个下面。

然而,无论我做什么,他们总是并肩作战

有什么想法吗?

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/bg7"
xmlns:android="http://schemas.android.com/apk/res/android">
<TextView android:id="@+id/spacer"
    android:layout_width="fill_parent"
    android:layout_height="50dip"
    android:text=" ">
</TextView>

<TableRow android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_below="@+id/spacer"
    android:paddingTop="5dip"
    android:paddingBottom="10dip"
    android:gravity="center">
    <ToggleButton android:id="@+id/ShowNotification"
            android:onClick="switchNotification"
            android:textOn="Show Notification"
            android:layout_width="220dip"
            android:layout_height="50dip"
            android:layout_above="@+id/UpdateLog"
            android:textOff="No Notification"/>
    <ToggleButton android:id="@+id/UpdateLog"
            android:layout_width="220dip"
            android:layout_height="50dip"
            android:onClick="swtichLogging"
            android:textOn="Log"
            android:textOff="Don't Log"/>
</TableRow>
    </RelativeLayout>

提前感谢

我很确定这是因为你有一个不在TableLayout内部的TableRow,你到底想用这个垫片做什么?请改用填充或边距。据我所知,你的代码应该是这样的:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/bg7"
    android:layout_margintop="65dp"
    >
    <ToggleButton android:id="@+id/ShowNotification"
        android:onClick="switchNotification"
        android:textOn="Show Notification"
        android:layout_width="220dip"
        android:layout_height="50dip"
        android:textOff="No Notification"
        android:layout_centerHorizontal="true"
        />
    <ToggleButton
        android:id="@+id/UpdateLog"
        android:layout_width="220dip"
        android:layout_height="50dip"
        android:onClick="swtichLogging"
        android:textOn="Log"
        android:textOff="Don't Log"
        android:below="@id/ShowNotification"
        android:layout_centerHorizontal="true"
        />
</RelativeLayout>

尝试将每个按钮设置为FILL_PARENT。

相关内容

  • 没有找到相关文章

最新更新