Я делаю свое приложение, и я не могу этого добиться, мне нужно получить следующее:
Макет, который мне нужен
Проблема в том, что мне нужна деталь 6: 01.33 слева, схватка (все буквы) посередине и кнопки справа.
Я пробовал несколько вещей, таких как использование веса, но я до сих пор не могу этого достичь. Я также пытаюсь с относительной Layout, но все еще ничего Я дам вам код, который я сделал:
<android.support.v7.widget.CardView
app:cardBackgroundColor="?attr/cardBackgroundColor"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:weightSum="3"
android:layout_width="match_parent"
android:orientation="horizontal"
android:layout_height="wrap_content">
<TextView
android:layout_weight="1"
android:padding="10dp"
android:layout_width="wrap_content"
android:textColor="?attr/primaryTextColor"
android:text="105: 46.23"
android:layout_height="wrap_content" />
<TextView
android:layout_weight="1.5"
android:padding="10dp"
android:layout_width="wrap_content"
android:textColor="?attr/secondaryTextColor"
android:text="F2 R B L2 F R B L2 F R B2 L' R2 B F"
android:layout_height="wrap_content" />
<LinearLayout
android:layout_weight="0.5"
android:orientation="horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@color/fui_transparent"
android:text="+2"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@color/fui_transparent"
android:text="DNF"/>
</LinearLayout>
</LinearLayout>
</android.support.v7.widget.CardView>