Использование LinearLayout
с горизонтальной ориентацией вместе с weightsum
из 3 для просмотра текста детьми даст вам легкое и более надежное решение, сделав его следующим образом:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:weightSum="3"
android:orientation="horizontal">
<TextView
android:id="@+id/magnitudeTV"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:layout_weight="1"
android:text="test"
android:textSize="15sp" />
<TextView
android:id="@+id/cityNameTV"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="test"
android:gravity="center"
android:layout_weight="1"
android:layout_margin="10dp"
android:textSize="15sp" />
<TextView
android:id="@+id/dateTV"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_margin="10dp"
android:textSize="15sp" />
</LinearLayout>
Сейчаскаждый из ваших текстовых видов займет ровно 1/3 всей ширины экрана, если вы хотите, чтобы центральный экран был больше, вы можете играть со значением layout_weight
в каждом текстовом представлении, чтобы соответствовать вашему желаемому дизайну.