问题描述
- listview里的textviw文本错位
-
如图所示:一开始布局没乱,但是输入数据后就会发生错误,我想实现的是,输入的新数据不会影响到其他数据的位置.该怎么解决?
部分xml
android:id="@+id/list_view"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scrollingCache="true"
android:cacheColorHint="#00000000"
android:fastScrollEnabled="true"
android:focusable="true"
android:dividerHeight="1dip"
/>item------
<?xml version="1.0" encoding="utf-8"?>xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"><TextView android:id="@+id/text_id" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_weight="1" android:textSize="20sp" android:gravity="center" android:text="@string/number" /> <TextView android:id="@+id/text_name" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_weight="1" android:gravity="center" android:textSize="20sp" android:text="@string/name" /> <TextView android:id="@+id/text_height" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_weight="1" android:textSize="20sp" android:gravity="center" android:text="@string/height" /> <TextView android:id="@+id/text_weight" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_weight="1" android:textSize="20sp" android:gravity="center" android:text="@string/weight" /> </LinearLayout>
解决方案
和你的item布局文件有关系。把item布局贴一下。
前面数字列应该设置成固定宽度。身高和体重也设置成固定宽度,顶多也就3为数字。
时间: 2024-10-25 09:40:12