使TextView自动适合视图中间

时间:2018-07-06 08:50:57

标签: android android-layout user-interface android-linearlayout android-layout-weight

我正在制作我的应用程序,但我无法实现此目标,我需要获得以下信息: Layout that I need

问题是我需要在左边的部分 6:01.33 ,在中间的部分是扰码(所有字母),在右边的按钮。 我已经尝试了一些方法,例如使用“举重”,但仍然无法实现这一目标。我也尝试了relativeLayout,但还是没有。我让你我完成的代码:

<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 :(得分:0)

删除

android:weightSum="3"

和所有

android:layout_weight="xx"

并添加

android:layout_weight="1"

争夺TextView应该可以解决问题。您的第一个TextView应该在左侧,按钮在右侧。剩余空间将从您争夺的TextView中获取。

答案 1 :(得分:0)

使用RelativeLayout

Quaternion