Использовать атрибут android:layout_weight
.
Установите вес TextViews в соответствии с вашими потребностями.
Попробуйте ниже код:
<?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"
xmlns:tools="http://schemas.android.com/tools"
android:clickable="true"
android:focusable="true" android:orientation="horizontal"
android:gravity="center_vertical"
android:padding="@dimen/margin_general_16dp">
<TextView
android:id="@+id/testText"
android:layout_weight=".5"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:paddingStart="@dimen/margin_general_16dp"
android:textColor="@color/text_color_general"
android:textSize="@dimen/text_size_general"
android:text="Test test test Test test test Test test test Test test test Test test test Test test test"
android:paddingLeft="@dimen/margin_general_16dp" />
<TextView
android:id="@+id/testAmount"
android:layout_weight=".5"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="@dimen/margin_small_8dp"
android:textColor="@color/redorange"
android:textSize="@dimen/text_size_general"
android:text="50"
android:layout_marginLeft="@dimen/margin_small_8dp" />
</LinearLayout>
Я надеюсь, что это работа для вас.