По какой-то причине предложения в моем приложении состоят из отдельных TextView, по одному на каждое слово.Конечно, созданное таким образом предложение должно выглядеть так, как если бы оно было одной строкой в TextView.Для этого мне нужно добавить каждому текстовому представлению определенное значение для атрибута «padding right».В окончательной версии это расстояние должно быть точно таким же, как если бы оно было строкой в TextView.Я не хочу оценивать значение для этого расстояния, есть ли формула, которая приводит к правильному результату?
TextViews просто сгруппированы в LinearLayout горизонтальной ориентации
<LinearLayout
style="@style/phraseCardViewSubContainer">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/word1G"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/word2G"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/word3G"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/word4G"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/word5G"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/word6G"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/word7G"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/word8G"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/word9G"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/word10G"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/word11G"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/word12G"
/>
</LinearLayout>