Сделать TextView автоматически вписываться в середину просмотра - PullRequest
0 голосов
/ 06 июля 2018

Я делаю свое приложение, и я не могу этого добиться, мне нужно получить следующее: Макет, который мне нужен

Проблема в том, что мне нужна деталь 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>

Ответы [ 2 ]

0 голосов
/ 06 июля 2018

Использовать RelativeLayout

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
            <TextView
                android:padding="10dp"
                android:layout_alignParentLeft="true"
                android:id="@+id/leftView"
                android:layout_width="wrap_content"
                android:text="105: 46.23"
                android:layout_height="wrap_content" />
            <TextView
                android:id="@+id/midddleView"
                android:layout_toRightOf="@id/leftView"
                android:layout_toLeftOf="@id/rightView"
                android:padding="10dp"
                android:layout_width="match_parent"
                android:text="F2 R B L2 F R B L2 F R B2 L' R2 B F"
                android:layout_height="wrap_content" />
            <LinearLayout
                android:id="@+id/rightView"
                android:layout_alignParentRight="true"
                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:text="+2"/>
                <Button
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="DNF"/>
            </LinearLayout>
</RelativeLayout>
0 голосов
/ 06 июля 2018

Удалить

android:weightSum="3"

и все

android:layout_weight="xx"

и добавьте

android:layout_weight="1"

к вашей схватке TextView должен сделать свое дело. Ваш первый TextView должен быть слева, а кнопки справа. Оставшееся место будет взято из вашей схватки TextView.

...