Android;当其他小部件保持左对齐状态时,如何右对齐按钮

时间:2018-09-02 04:49:04

标签: android xml android-layout justify

我是Android的新手,我的应用程序终于可以运行了,但是我在布局上遇到了麻烦。

下面的xml被剥离,但是在标记它的地方<repeats>有4种水平布局。

每个都有不同的小部件SpinnerSeekBarRadioButtons,每个小部件都由分隔符分隔。

每个选择一个设置,然后按向右的Set按钮。

我的问题,尽管所有小部件都整齐地左对齐,但按钮的垂直对齐到处都是

如果我仅使用窗口小部件边距来玩,它将不适合与其他Android设备配合使用。

如何使Buttons在垂直方向上右对齐,而不将其他所有内容从左移动?

           GETTING                              WANT
 -------------------------------   -------------------------------- 
 | <Spinner>  <button>          |  | <Spinner>           <button> |      
 | < -------- Divider --------> |  | < -------- Divider --------> |
 | <RadioButton >  <button>     |  | <RadioButton>       <button> |
 | < -------- Divider --------> |  | < -------- Divider --------> |
 | <SeekBar>  <button>          |  | <SeekBar>           <button> |
 | < -------- Divider --------> |  | < -------- Divider --------> |
 | <RadioButton>       <button> |  | <RadioButton>       <button> |
 -------------------------------   --------------------------------

这是我的相关代码:

content_main.xml 
 <?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
    tools:context=".MainActivity"
    tools:showIn="@layout/activity_main">

    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="center_vertical"
        tools:scrollY="?android:attr/scrollbarSize">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_alignParentEnd="true"
            android:layout_alignParentTop="true"
            android:orientation="vertical">

<repeats>   <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:orientation="horizontal">
                <Spinner
                    android:id="@+id/dynamic_TZ_spinner"
                    android:layout_width="223dp"
                    android:layout_height="wrap_content"
                    android:layout_marginLeft="@dimen/dp20"
                    android:layout_marginRight="@dimen/dp20" />
                <Button
                    android:id="@+id/TZ_btnSubmit"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="@string/set" />
            </LinearLayout>
            <View
                android:id="@+id/divider3"
                android:layout_width="match_parent"
                android:layout_height="5dp"
                android:layout_marginTop="@dimen/dp10"
                android:background="?android:attr/listDivider"
                android:visibility="visible" />
....            

            </LinearLayout>
    </RelativeLayout>
</android.support.constraint.ConstraintLayout>

4 个答案:

答案 0 :(得分:1)

请尝试这种方式,并注意当您要将小部件放置在其父对象的右侧或左侧时,请使用“ android:layout_alignParentRight =“ true”“或” android:layout_alignParentLeft =“ true”“

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
xmlns:tools="http://schemas.android.com/tools"
android:gravity="center_vertical"
tools:scrollY="?android:attr/scrollbarSize">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_alignParentEnd="true"
        android:layout_alignParentTop="true"
        android:orientation="vertical">

        <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">
        <Spinner
            android:id="@+id/dynamic_TZ_spinner"
            android:layout_width="223dp"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_margin="@dimen/dp20" />
        <Button
            android:id="@+id/TZ_btnSubmit"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:layout_margin="@dimen/dp20"
            android:text="@string/set" />
    </RelativeLayout>
        <View
            android:id="@+id/divider3"
            android:layout_width="match_parent"
            android:layout_height="5dp"
            android:layout_marginTop="10dp"
            android:background="?android:attr/listDivider"
            android:visibility="visible" />
        ....

    </LinearLayout>
</RelativeLayout>

答案 1 :(得分:0)

您可以将线性布局用于每个小部件和按钮(列)

答案 2 :(得分:0)

尝试一下:-

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
tools:context=".MainActivity"
tools:showIn="@layout/activity_main">

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:gravity="center_vertical"
    tools:scrollY="?android:attr/scrollbarSize">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_alignParentEnd="true"
        android:layout_alignParentTop="true"
        android:orientation="vertical">

 <repeats>   <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal">
            <Spinner
                android:id="@+id/dynamic_TZ_spinner"
                android:layout_width="223dp"
                android:layout_height="wrap_content"
                android:layout_alignParentLeft="true"
                android:layout_marginLeft="@dimen/dp20"
                android:layout_marginRight="@dimen/dp20" />
            <Button
                android:id="@+id/TZ_btnSubmit"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentRight="true"
                android:text="@string/set" />
        </RelativeLayout>
        <View
            android:id="@+id/divider3"
            android:layout_width="match_parent"
            android:layout_height="5dp"
            android:layout_marginTop="@dimen/dp10"
            android:background="?android:attr/listDivider"
            android:visibility="visible" />
....            

        </LinearLayout>
</RelativeLayout>

答案 3 :(得分:0)

您可以使用子级中的FrameLayoutlayout_gravity属性来实现它。

对于一行使用:

<FrameLayout
    android:padding="8dp"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <RadioButton
        android:id="@+id/radioBtn"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="start|center_vertical"
        android:text="Radio Button" />

    <Button
        android:id="@+id/btn"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="end|center_vertical"
        android:text="Button" />
</FrameLayout>