私は2つのテキストビューと1つの行に1つのEditViewである1つのリストを持っています。私はこれらのtextviewsと実行時にeditviewをバインドし、今私はリストビュー内のedittextのいくつかの妥当性検査をしたいのですが、私のEditView IDはすべての行に対して同じです。マイコードは、ここでは、このリストビューでリストビュー内でAndroid EditTextの検証を行う方法は?
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:paddingBottom="6dip"
android:paddingTop="4dip" >
<TextView
android:id="@+id/txt_Meter_Name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:width="140dp" />
<TextView
android:id="@+id/txt_Previous"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:width="100dp" />
<EditText
android:id="@+id/ed_Current"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:imeOptions="actionNext|actionDone"
android:singleLine="true"
android:width="100dp" >
</EditText>
「私EditView IDがすべての行で同じである、」それはほんの数EditViewsはない(のみ表示のもののための)すべての行... HTTPのために、存在してあなただけの問題ではありませんwww.youtube.com/watch?v=wDBM6wVEO70 – Selvin