Android макет textview выровнять вправо xonsidering максимальный размер - PullRequest
0 голосов
/ 20 ноября 2018

enter image description here

Первое изображение - это то, что мне удалось сделать.

Во втором я хотел бы добиться успеха.

Я должен поместить текстовое представление с текстом: 01.35 справа, как видно из изображения, учитывая максимальное расширение текста, которое может содержать другое текстовое представление выше и ниже его.

Я подумал и попробовал сthetivtivLayout, но я не смог решить проблему.

Несколько советов?

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/widgetItemContainer"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/round_message"
    android:padding="5dp"
    android:orientation="horizontal">

    <ImageView
        android:id="@+id/ch"
        android:layout_width="50dp"
        android:layout_height="50dp"
        android:layout_alignParentLeft="true" />

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="60dp"
        android:orientation="vertical">

        <LinearLayout
            android:id="@+id/container2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:orientation="vertical">

            <TextView
                android:id="@+id/name"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Alberto"
                android:textColor="#000000"
                android:textSize="14sp"
                android:textStyle="bold" />

            <LinearLayout
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginRight="5dp"
                android:orientation="horizontal">

                <TextView
                    android:id="@+id/username"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:singleLine="true"
                    android:text="@angela"
                    android:textColor="#2d2d2d" />

                <TextView
                    android:id="@+id/timestamp"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_alignParentRight="false"
                    android:text="01.35"
                    android:textColor="#2d2d2d" />

            </LinearLayout>

        </LinearLayout>

        <LinearLayout
            android:id="@+id/container3"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:orientation="vertical">

            <TextView
                android:id="@+id/text"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_below="@id/container2"
                android:text="#ulisse Il piacere della scoperta."
                android:textColor="#000"
                android:textSize="14sp" />

        </LinearLayout>

    </LinearLayout>


</RelativeLayout>

Ответы [ 2 ]

0 голосов
/ 20 ноября 2018

Вы должны быть в состоянии сделать это, установив ширину 0 и вес 1 в текстовом представлении username и увеличив ширину контейнера до соответствия родительскому:

<LinearLayout
        android:layout_width="match_parent" // Extend the width to match parent
        android:layout_height="wrap_content"
        android:layout_marginRight="5dp"
        android:orientation="horizontal">

    <TextView
            android:id="@+id/username"
            android:layout_width="0dp" // Set width to 0 and weight to 1
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:singleLine="true"
            android:text="@angela"
            android:textColor="#2d2d2d" />

    <TextView
            android:id="@+id/timestamp"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="false"
            android:text="01.35"
            android:textColor="#2d2d2d" />
</LinearLayout>

Представление с 0ширина и вес 1 в горизонтальном направлении LinearLayout увеличат его ширину до максимума, но оставят достаточно места для следующего дочернего просмотра.

0 голосов
/ 20 ноября 2018

Попробуйте установить ширину родительского LinearLayout (тот, который содержит 2 TextViews) в match_parent (а также его родительский - то есть container2). Затем используйте веса LinearLayout для своих детей, чтобы уравновесить их. Что-то вроде:

<LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:weightSum="1"
                android:orientation="horizontal">

            <TextView
                    android:id="@+id/username"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:singleLine="true"
                    android:text="angela"
                    android:layout_weight="0.8"
                    android:textColor="#2d2d2d"/>

            <TextView
                    android:id="@+id/timestamp"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_gravity="right"
                    android:gravity="right"
                    android:text="01.35"
                    android:layout_weight="0.2"
                    android:textColor="#2d2d2d"/>

        </LinearLayout>

Я бы посоветовал вам также изучить ConstraintLayout. Может быть лучше подходит для ваших требований.

...