2016-03-22 10 views
0

エディットテキストと各行のボタンで自分のマルチカラムリストビューを作成しました。私はどのボタンがクリックされたのかを識別するために各ボタンのタグ値を設定しています。しかし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> 
+0

'pointsGiven' idはどのレイアウトですか?あなたは現在、リストビューの行レイアウトではなく、リストビューの行レイアウトであることを確認しようとしています –

+0

pointsGivenはリストビューの行レイアウトxmlファイルにあります – jacmurphy50

+1

代わりに 'v.findViewById'を使用する必要があります –

答えて

0
@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); 
    EditText points = (EditText) v.findViewById(R.id.pointsGiven); 
    //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); 

       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; 
} 

初期アダプタでのonClick前のEditTextと同じの値を取得しよう。あなたのEditText pointsがあなたの行の内側に配置され、あなたが行のビューでそれを見つける必要があると仮定すると、

1

@Override 
public void onClick(View view) { 
    //your code 
    EditText points = (EditText) view.findViewById(R.id.pointsGiven); 
    //your code 
} 
+0

私はこのエラーが発生しました:java.lang.NullPointerException:仮想メソッド 'android.text.Editable android.widget.EditText.getText()'を呼び出しようとしました。ヌルオブジェクト参照 – jacmurphy50

+0

これは、レイアウトファイルに指定された 'id'を持つEditTextが存在しないことを意味します。元の投稿を編集して行のレイアウトを表示しますか? – yennsarah

+0

@Amy - "view"は実際に子ビューを持たないボタンです( - > NPE)。あなたはcricket_007のように "v"が必要です: 'EditText points =(EditText)v.findViewById(R.id.pointsGiven);' – 0X0nosugar

0

ちょうど上に渡すアイテムの位置をクリックすると、アイテム

を取得し、次にクリックしました
    //When one of the list buttons have been clicked 

        b.setTag(position); 
        b.setOnClickListener(new View.OnClickListener() { 

         @Override 
         public void onClick(View view) { 
         Item item = getItem((int)view.getTag()); 
        } 
関連する問題