Android; Как правильно выровнять кнопки, в то время как другие виджеты остаются выровненными влево - PullRequest
0 голосов
/ 02 сентября 2018

Я новичок в Android, и мое приложение наконец работает, но у меня проблемы с макетом.

xml ниже урезан, но там, где я его пометил <repeats> У меня есть 4 горизонтальных макета.

Каждый с различными виджетами Spinner, SeekBar и RadioButtons все разделены разделителем.

Каждый выбирает настройку и нажимает кнопку 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 голосов
/ 02 сентября 2018

Пожалуйста, попробуйте этот способ и обратите внимание, что когда вы хотите поместить виджет справа или слева от их родителя, используйте «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>
0 голосов
/ 02 сентября 2018

Попробуйте это: -

<?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>
0 голосов
/ 02 сентября 2018

Вы можете достичь этого, используя атрибуты FrameLayout и layout_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>
0 голосов
/ 02 сентября 2018

Вы можете использовать Linear Layout для каждого виджета и кнопки (столбец)

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...