-1

Android用のアプリケーションを作成しようとしています。ある時点でアクティビティを開く必要がある場合、複数の連絡先を選択できるように、ユーザーの電話のすべての連絡先をlistviewwithで表示する必要があります。checkbox現在、すべての連絡先のリストを表示するコードを作成しましたが、添付の画像でわかるようにチェックボックスはありません。次に、ユーザーが を使用して必要な連絡先を選択するcheckboxclicks on DONE button、メイン アクティビティで結果が生成され、ユーザーが選択したすべての連絡先がEditTextこのように表示されますFrank <+911234567890>, John <+913456789012>, Ashley <+911237890456>,。どうすれば私が望むものを達成できますか? また、現在表示されているダッシュ (-) も消えるはずです。

ここに画像の説明を入力

4

3 に答える 3

1

以下を使用して、すべての項目にチェックボックスを追加します。

listView.setChoiceMode(CHOICE_MODE_MULTIPLE);

これにより、すべてのアイテムにチェックボックスが追加されるだけでなく、すべてのチェック状態が処理されます。アイテムの状態を取得するために使用できるいくつかの方法があります。

getCheckedItemCount()
getCheckedItemIds()
getCheckedItemPositions()

また、 setItemChecked()を使用して、項目のチェック状態をプログラムで設定できます。複数選択リストを作成する方法については、このチュートリアルをご覧ください。

于 2012-09-12T12:49:52.893 に答える
1

function split("-") を使用して各「-」で文字列を分割し、連結します。

于 2013-09-03T10:07:16.337 に答える
0

以下のコード スニペットを使用して、電話帳からすべての連絡先を取得し、チェックボックスを含む ListView にそれらを追加して、複数選択を有効にします。

public class Display extends Activity implements OnItemClickListener{

List<String> name1 = new ArrayList<String>();
List<String> phno1 = new ArrayList<String>();
MyAdapter ma ;
Button select;
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.display);

    getAllContacts(this.getContentResolver());
    ListView lv= (ListView) findViewById(R.id.lv);
        ma = new MyAdapter();
        lv.setAdapter(ma);
        lv.setOnItemClickListener(this); 
        lv.setItemsCanFocus(false);
        lv.setTextFilterEnabled(true);
        // adding
       select = (Button) findViewById(R.id.button1);
    select.setOnClickListener(new OnClickListener()
    {

        @Override
        public void onClick(View v) {
                StringBuilder checkedcontacts= new StringBuilder();

            for(int i = 0; i < name1.size(); i++)

                {
                if(ma.mCheckStates.get(i)==true)
                {
                     checkedcontacts.append(name1.get(i).toString());
                     checkedcontacts.append("\n");

                }
                else
                {

                }


            }

            Toast.makeText(Display.this, checkedcontacts,1000).show();
        }       
    });


}
@Override
public void onItemClick(AdapterView<?> arg0, View arg1, int arg2, long arg3) {
    // TODO Auto-generated method stub
     ma.toggle(arg2);
}

public  void getAllContacts(ContentResolver cr) {

    Cursor phones = cr.query(ContactsContract.CommonDataKinds.Phone.CONTENT_URI, null,null,null, null);
    while (phones.moveToNext())
    {
      String name=phones.getString(phones.getColumnIndex(ContactsContract.CommonDataKinds.Phone.DISPLAY_NAME));
      String phoneNumber = phones.getString(phones.getColumnIndex(ContactsContract.CommonDataKinds.Phone.NUMBER));
      name1.add(name);
      phno1.add(phoneNumber);
    }

    phones.close();
 }
class MyAdapter extends BaseAdapter implements CompoundButton.OnCheckedChangeListener
{  private SparseBooleanArray mCheckStates;
   LayoutInflater mInflater;
    TextView tv1,tv;
    CheckBox cb;
    MyAdapter()
    {
        mCheckStates = new SparseBooleanArray(name1.size());
        mInflater = (LayoutInflater)Display.this.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    }
    @Override
    public int getCount() {
        // TODO Auto-generated method stub
        return name1.size();
    }

    @Override
    public Object getItem(int position) {

        return position;
    }

    @Override
    public long getItemId(int position) {
        // TODO Auto-generated method stub

        return 0;
    }

    @Override
    public View getView(final int position, View convertView, ViewGroup parent) {
        // TODO Auto-generated method stub
        View vi=convertView;
        if(convertView==null)
         vi = mInflater.inflate(R.layout.row, null); 
         tv= (TextView) vi.findViewById(R.id.textView1);
         tv1= (TextView) vi.findViewById(R.id.textView2);
         cb = (CheckBox) vi.findViewById(R.id.checkBox1);
         tv.setText("Name :"+ name1.get(position));
         tv1.setText("Phone No :"+ phno1.get(position));
         cb.setTag(position);
         cb.setChecked(mCheckStates.get(position, false));
         cb.setOnCheckedChangeListener(this);

        return vi;
    }
     public boolean isChecked(int position) {
            return mCheckStates.get(position, false);
        }

        public void setChecked(int position, boolean isChecked) {
            mCheckStates.put(position, isChecked);
        }

        public void toggle(int position) {
            setChecked(position, !isChecked(position));
        }
    @Override
    public void onCheckedChanged(CompoundButton buttonView,
            boolean isChecked) {
        // TODO Auto-generated method stub

         mCheckStates.put((Integer) buttonView.getTag(), isChecked);         
    }   
}   

}

于 2014-01-18T12:48:19.440 に答える