我想知道如何解决这个问题。
现在我的情况是这样的: 我有一个项目列表视图。项目由标题(textview)和固定在右侧的数字(textview)组成(textview,圆形可绘制形状作为背景。)
但我的问题是当我的标题太长时会覆盖数字。
我想知道如何编写我的布局,我的标题根本不会覆盖其他文本视图。这样在数字的左边会有一条想象的线。如果标题太长,它将继续下一行,而不是覆盖我的号码。
我感谢任何帮助!
这是我的listitem代码:
** custom_list_item.xml:**
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/transparent"
android:paddingTop="10dp" >
<TextView
android:id="@+id/tvFach"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_marginBottom="10dp"
android:text="@string/fach_grid"
android:textColor="@color/white"
android:paddingLeft="5dp"
android:textSize="30sp" />
<TextView
android:id="@+id/tvAverage"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:layout_marginBottom="10dp"
android:layout_marginRight="10dp"
android:background="@drawable/circle_list_item"
android:text="@string/average"
android:textColor="@color/white"
android:textSize="30sp" />
<View
android:id="@+id/separator"
android:layout_width="fill_parent"
android:layout_height="1dip"
android:layout_alignParentBottom="true"
android:layout_marginBottom="10dp"
android:background="@color/white" />
</RelativeLayout>
答案 0 :(得分:0)
我会试试这个:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/black"
android:paddingTop="10dp" >
<ImageView
android:id="@+id/tvAverageImage"
android:layout_width="wrap_content"
android:layout_centerVertical="true"
android:layout_height="wrap_content"
android:layout_marginBottom="10dp"
android:src="@drawable/ic_menu_mark"
android:layout_alignParentRight="true"
android:paddingLeft="5dp" />
<TextView
android:id="@+id/tvAverage"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_marginBottom="10dp"
android:layout_alignParentRight="true"
android:text="average"
android:textColor="@color/white"
android:paddingLeft="5dp"
android:textSize="30sp" />
<TextView
android:id="@+id/tvFach"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_toLeftOf="@id/tvAverage"
android:layout_centerVertical="true"
android:layout_marginBottom="10dp"
android:layout_marginRight="10dp"
android:text="fach_grid"
android:textColor="@color/white"
android:textSize="30sp" />
<View
android:id="@+id/separator"
android:layout_width="fill_parent"
android:layout_height="1dip"
android:layout_alignParentBottom="true"
android:layout_marginBottom="10dp"
android:background="@color/white" />
</RelativeLayout>