如圖所示:一開始布局沒亂,但是輸入數據後就會發生錯誤,我想實現的是,輸入的新數據不會影響到其他數據的位置.該怎麼解決?
部分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為數字。