2017-04-12 11 views
0

私はカスタムリストビューをチェックボックスと一緒に使用していますどのようにチェックボックスを1つクリックすると文字列ビルダーを作成できますか?選択された各チェックボックスから文字列を作成します

これはcustomlistiviewの私のコードです:

class MyListViewAdapterExtras : BaseAdapter<ExtrasPreviewClass> 
{ 
    public List<ExtrasPreviewClass> mitems; 
    private Context mContext; 
    public MyListViewAdapterExtras(Context context, List<ExtrasPreviewClass> items) 
    { 
     mitems = items; 
     mContext = context; 

    } 
    public override int Count 
    { 
     get 
     { 
      return mitems.Count; 
     } 
    } 
    public override long GetItemId(int position) 
    { 
     return position; 
    } 
    public override ExtrasPreviewClass this[int position] 
    { 
     get 
     { 
      return mitems[position]; 
     } 

    } 

    public override View GetView(int position, View convertView, ViewGroup parent) 
    { 
     string dpPath = Path.Combine(System.Environment.GetFolderPath(System.Environment.SpecialFolder.Personal), "student.db3"); 
     var db = new SQLiteConnection(dpPath); 
     db.CreateTable<ExtrasPreviewClass>(); 
     db.DeleteAll<ExtrasPreviewClass>(); 



     View row = convertView; 
     if (row == null) 
     { 
      row = LayoutInflater.From(mContext).Inflate(Resource.Layout.ExtrasPreview, null, false); 

     } 



     TextView txtExtrasName = row.FindViewById<TextView>(Resource.Id.txtExtrasName); 
     txtExtrasName.Text = mitems[position].ExtrasName; 
     CheckBox txtExtrasCheckBox = row.FindViewById<CheckBox>(Resource.Id.txtExtrasCheckBox); 
     txtExtrasCheckBox.Text = mitems[position].ExtrasCheckBox; 
     TextView txtExtrasID = row.FindViewById<TextView>(Resource.Id.txtExtrasID); 
     txtExtrasID.Text = Convert.ToString(mitems[position].id); 
     TextView txtExtrasPrice = row.FindViewById<TextView>(Resource.Id.txtExtrasPrice); 
     txtExtrasPrice.Text = Convert.ToString(mitems[position].ExtrasPrice); 







     txtExtrasCheckBox.Click += delegate 
     { 
      if (mitems[position].IsChecked == true) 
      { 

       Connection.Extras += txtExtrasName.Text + ","; 


      } 


      //in this point i want to add a stringbuilder which it will add all my textvalues which checkbox is checked into a string. 

      //Connection.Extras= "my string" 

      //I dont know if i must use stringbuilder 

     }; 
     //SetOnCheckedChangeListener must be set before txtCheckBox.Checked = mitems[position].IsChecked 
     txtExtrasCheckBox.SetOnCheckedChangeListener(new CheckChangeListener(position, ref mitems)); 
     txtExtrasCheckBox.Checked = mitems[position].IsChecked; 
     Console.WriteLine("Set the CheckBox " + position + " to " + mitems[position].IsChecked); 

     return row; 
    } 

    public class CheckChangeListener : Java.Lang.Object, CompoundButton.IOnCheckedChangeListener 
    { 
     int position; 
     List<ExtrasPreviewClass> items; 
     public CheckChangeListener(int position, ref List<ExtrasPreviewClass> items) 
     { 
      this.position = position; 
      this.items = items; 
     } 
     public void OnCheckedChanged(CompoundButton buttonView, bool isChecked) 
     { 
      items[position].IsChecked = isChecked; 
      Console.WriteLine("Set the " + position + " IsChecked to " + isChecked); 


     } 

私は正しい方法でそれを行う場合は知りません。選択した各チェックボックスSee picture HEREの名前をクラスまたは文字列に追加したいと思います。その後、

String result = ""; 
for(CheckBox cb : checkboxes) { 
        if (cb.isChecked()){ 
         result += cb.getText() + ", "; 
        } 
       } 

として、最終的なコンマ置き換える:

答えて

0

ボタンクリック、またはユーザが行われることを意味何かした後、あなたがこのような何かをしたい「と。」

+0

チェックボックスを使用する場所は自分のチェックボックスですか? CheckBox txtExtrasCheckBox = row.FindViewById (Resource.Id.txtExtrasCheckBox); txtExtrasCheckBox.Text = mitems [位置] .ExtrasCheckBox; – Dim

+0

@Dimプログラムでチェックボックスを追加する場所がある場合は、チェックボックスが作成されたときにリストにチェックボックスを追加する必要があります。 –

+0

問題は、私が望まない値を取ることです。私のリストビューをスクロールダウンしているときの二重値の三重値の例。私の問題です。私の現在のコードが私の更新された答えを見てください – Dim

関連する問題