Android: layout_weight не работает с Button и LinearLayout - PullRequest
0 голосов
/ 13 июня 2018

Я пытаюсь, чтобы все кнопки были одинакового размера, и все они были на правой стороне экрана, независимо от того, сколько текста находится в текстовом представлении.

Прямо сейчас, кнопки следующиек вертикальному LinearLayout (который состоит из 2 TextViews) и находятся только в правильном месте, когда один из TextViews больше, чем одна строка.

Я попытался добавить Button к LinearLayout и придать ему вес,присваивая каждому TextViews вес, давая только заполненный текстом LinearLayout вес и т. д. безрезультатно.

Теперь мне интересно, если это проблема, потому что это не основной XML, а вместо этогоповторный пункт?Но я не думал, что это повлияет на это.

Вот как это выглядит в настоящее время

И это XML элемента строки:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">

<LinearLayout
    android:id="@+id/linearlayout"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:orientation="vertical">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Header" />

    <TextView
        android:id="@+id/text"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />
</LinearLayout>

<Button
    android:id="@+id/button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Button" />

Ответы [ 4 ]

0 голосов
/ 13 июня 2018

Вы можете просто использовать LinearLayout с горизонтальной ориентацией, содержащий 2 вида:

  • Ваш текстовый контейнер (может быть вертикальный LinearLayout с двумя TextViews). Сделать ширину LinearLayout 0dp и вес: 1
  • Ваша кнопка (возможно, с некоторыми боковыми полями и фиксированной шириной)

Таким образом, практически первый LinearLayout заполнит вседоступное горизонтальное пространство, поэтому нажмите кнопку на правом краю.

Небольшой пример:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal">

    <LinearLayout
        android:layout_gravity="center_vertical"
        android:layout_width="0dp"
        android:layout_weight="1"
        android:layout_height="wrap_content"
        android:orientation="vertical">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Header" />

        <TextView
            android:id="@+id/text"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Some random text" />

    </LinearLayout>

    <Button
        android:id="@+id/button"
        android:layout_width="100dp"
        android:layout_height="40dp"
        android:text="Button" />

</LinearLayout>

Таким образом, в принципе вы получите что-то вроде этого enter image description here

0 голосов
/ 13 июня 2018

Вы также можете сделать это с помощью ConstraintLayout

<android.support.constraint.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <TextView
        android:id="@+id/header"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:text="Header"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toLeftOf="@+id/button"
        app:layout_constraintTop_toTopOf="parent"/>

    <TextView
        android:id="@+id/text"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:text="Second text"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toLeftOf="@+id/button"
        app:layout_constraintTop_toBottomOf="@+id/header"/>

    <Button
        android:id="@+id/button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintRight_toRightOf="parent"/>

</android.support.constraint.ConstraintLayout>
0 голосов
/ 13 июня 2018

Существует множество различных макетов, которые вы можете использовать для достижения желаемого дизайна.Это подход, который вы можете использовать, изменив внешний элемент Layout с LinearLayout на RelativeLayout

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <LinearLayout
        android:id="@+id/linearlayout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentStart="true"
        android:layout_toStartOf="@+id/button"
        android:orientation="vertical">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Header" />

        <TextView
            android:id="@+id/text"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />
    </LinearLayout>

    <Button
        android:id="@+id/button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentEnd="true"
        android:text="Button" />
</RelativeLayout>

Обратите внимание, что вам нужно только добавить атрибуты:

android:layout_alignParentStart="true"
android:layout_toStartOf="@+id/button"

кinner LinearLayout и добавьте этот атрибут к представлению Button:

android:layout_alignParentEnd="true"

Вы можете добавить атрибуты Margin, чтобы дать взглядам дополнительное пространство.

0 голосов
/ 13 июня 2018

Это то, что ваш XML должен быть для того, что вам нужно

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal"
    android:weightSum="2">

    <LinearLayout
        android:id="@+id/linearlayout"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:orientation="vertical">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Header" />

        <TextView
            android:id="@+id/text"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />
    </LinearLayout>

    <Button
        android:id="@+id/button"
        android:layout_weight="1"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:text="Button" />
</LinearLayout>
...