エディットテキストと各行のボタンで自分のマルチカラムリストビューを作成しました。私はどのボタンがクリックされたのかを識別するために各ボタンのタグ値を設定しています。しかしonClickメソッドでは、値を読み込んでintに変換しようとしています。しかし、このedittextの値は常に空文字列です。コードは次のとおりです。edittextとボタンのあるカスタムリストビューは機能しません
wrapper.mySimpleAdapter = new SimpleAdapter(Chores.this, chores, R.layout.parent_list_format, new String[]{"chore","child_name","points"},new int[]{R.id.value_name,R.id.child_name,R.id.point_value })
{
@Override
public View getView (final int position, View convertView, ViewGroup parent)
{
//Setting the tag for each button of the list to the chore name
//to be able to identify which chore is to be claimed
final View v = super.getView(position, convertView, parent);
Button b=(Button)v.findViewById(R.id.rate);
String names = (v.findViewById(R.id.child_name)).toString();
names += ("::") + (v.findViewById(R.id.value_name)).toString();
b.setTag(names);
//When one of the list buttons have been clicked
b.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
try {
//Sends the chore data to the php file to update the database and reload page
String names = (String) view.getTag();
String child = names.substring(0,names.indexOf(":"));
String chore = names.substring(names.lastIndexOf(":"), names.length()-1);
**EditText points = (EditText) findViewById(R.id.pointsGiven);
int pointsGiven = Integer.parseInt (points.getText().toString());**
Chore chores = new Chore(chore,pointsGiven,accountConnect.user.username,child);
uploadChore(chores);
startActivity(new Intent(v.getContext(), Chores.class));
} catch (Exception e) {
e.printStackTrace();
}
}
});
return v;
}
};
私が話している特に2つの行を示しています。私は、各行が作成されているときにこのedittextを読んでいると推測しています。そのため、常に空の文字列を返しています。ボタンをクリックしたときにedittextの値を取得する方法はありますか?
これは、リストビューのXMLファイルです:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/value_name"
android:layout_width="100dp"
android:layout_height="wrap_content"
android:typeface="sans"
android:textColor="#000000"
android:layout_weight="1"
android:gravity="center"
android:textAppearance="?android:attr/textAppearanceLarge" />
<TextView
android:id="@+id/child_name"
android:layout_width="80dp"
android:layout_height="wrap_content"
android:typeface="sans"
android:textColor="#000000"
android:layout_weight="1"
android:gravity="center"
android:textAppearance="?android:attr/textAppearanceLarge" />
<TextView
android:id="@+id/point_value"
android:layout_width="30dp"
android:layout_height="wrap_content"
android:typeface="sans"
android:textColor="#000000"
android:layout_weight="1"
android:gravity="center"
android:textAppearance="?android:attr/textAppearanceLarge" />
<EditText
android:layout_width="60dp"
android:layout_height="wrap_content"
android:inputType="number"
android:hint="points"
android:ems="10"
android:id="@+id/pointsGiven"
/>
<Button
android:id="@+id/rate"
android:layout_width="60dp"
android:layout_height="wrap_content"
android:text = "Rate"
android:layout_weight="1" />
</LinearLayout>
'pointsGiven' idはどのレイアウトですか?あなたは現在、リストビューの行レイアウトではなく、リストビューの行レイアウトであることを確認しようとしています –
pointsGivenはリストビューの行レイアウトxmlファイルにあります – jacmurphy50
代わりに 'v.findViewById'を使用する必要があります –