Показать 2 или более текстовых просмотров в одной строке - PullRequest
1 голос
/ 27 февраля 2020

Я видел такие же вопросы, но я использую android:orientation="vertical", поэтому я не могу использовать ориентацию как горизонтальную. Как я могу отобразить 2 или более текстовых просмотров в 1 строке? (Извините за мои навыки английского sh)

    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        tools:context=".MainActivity"
        android:orientation="vertical"
        android:background="@drawable/background"
        android:weightSum="1">
<TextView
        android:layout_width="62dp"
        android:layout_height="28dp"
        android:layout_gravity="right"
        android:text="Sign in"
        android:textColor="#7041EE"
        android:textSize="20dp" />

    <TextView
        android:id="@+id/nwah"
        android:layout_width="162dp"
        android:layout_height="28dp"
        android:layout_gravity="left"
        android:text="New around here?"
        android:textColor="#ACACAC"
        android:textSize="20dp" />


</LinearLayout>

введите описание изображения здесь

Ответы [ 2 ]

2 голосов
/ 27 февраля 2020
<?xml version="1.0" encoding="utf-8"?>
    <LinearLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        tools:context=".MainActivity"
        android:orientation="vertical"
        android:background="@drawable/background"
        android:weightSum="1">
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:weightSum="2">
    <TextView
        android:layout_width="0dp"
        android:layout_height="28dp"
        android:layout_gravity="right"
        android:layout_weight="1"
        android:text="Sign in"
        android:textColor="#7041EE"
        android:textSize="20dp" />

    <TextView
        android:id="@+id/nwah"
        android:layout_width="0dp"
        android:layout_height="28dp"
        android:layout_weight="1"
        android:layout_gravity="left"
        android:text="New around here?"
        android:textColor="#ACACAC"
        android:textSize="20dp" />
    </LinearLayout>
</LinearLayout>
0 голосов
/ 27 февраля 2020

Вы можете добавить другое представление для textView

<LinearLayout // vertical
 <LinearLayout // hotizontal
  <TextView/>
  <TextView/>
 <LinearLayout/>
<LinearLayout/>

или использовать Макет ограничения

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