我想爲android創建一個應用程序。其中有一點我需要打開一個活動,我需要在listview
和checkbox
之間顯示用戶手機上的所有聯繫人,以便可以選擇多個聯繫人。我已經寫了一個代碼,它顯示了所有聯繫人的列表,但沒有複選框,您可以在附加的圖像中看到。接下來,當用戶使用checkbox
和clicks on DONE button
選擇所需的聯繫人時,應在主要活動中導出結果,並且用戶選擇的所有聯繫人應顯示在EditText
中,如Frank <+911234567890>, John <+913456789012>, Ashley <+911237890456>,
。我怎樣才能達到我想要的?而且當前顯示的破折號( - )也應該消失。使用複選框選擇多個聯繫人
-1
A
回答
1
使用以下方法來對所有項目添加複選框:
listView.setChoiceMode(CHOICE_MODE_MULTIPLE);
這不僅將複選框添加到所有的項目,但它會處理所有檢查狀態你。你有幾個方法,你可以用它來獲得物品的狀態:
getCheckedItemCount()
getCheckedItemIds()
getCheckedItemPositions()
你也可以使用setItemChecked()以編程方式設置任何項目的選中狀態。請參閱this tutorial瞭解如何製作多選列表。
+0
當我檢索字符串中的數字時,如何刪除破折號( - )? –
1
使用函數split(「 - 」)分割每個' - '上的字符串,然後連接它。
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);
}
}
}
相關問題
- 1. 複選框在列表視圖中選擇多個聯繫人
- 2. 多個聯繫人選擇器列表
- 3. 在Android中選擇多個聯繫人
- 4. 在Android中選擇多個聯繫人
- 5. Android中的多個聯繫人選擇
- 6. 選擇聯繫人
- 7. 安卓聯繫人選擇器與複選框
- 8. Android多個聯繫人選擇器(可選擇選擇哪個電話號碼)
- 9. 帶複選框的聯繫人列表
- 10. PHP聯繫表單多個收件人,收件人列表取決於用戶選擇 - 複選框
- 11. 聯繫人選擇器
- 12. 如何使用intent.ACTION_PICK打開系統聯繫人並選擇一些聯繫人,但不只是選擇一個?
- 13. 使用Javascript動態選擇多個複選框選擇
- 14. 選中一個複選框以選擇多個複選框
- 15. ExtJS 4用複選框標題選擇多個CheckColumn複選框
- 16. 帶複選框的聯繫人列表,用於選擇羣組消息
- 17. 多選擇值複選框
- 18. android:按勾選複選框排序聯繫人/項目
- 19. 在ListActivity中保存複選框選定聯繫人的位置?
- 20. 如何從複選框(Android)中獲取選定的聯繫人
- 21. 取消多個複選框中的複選框選擇狀態
- 22. 從複選框中選擇多個值
- 23. 黃瓜選擇多個複選框
- 24. php選擇多個複選框
- 25. 在qt中選擇多個複選框
- 26. 從複選框中選擇多個值
- 27. 選擇多個複選框的問題
- 28. 在cakephp中選擇多個複選框?
- 29. 選擇多個複選框同名
- 30. Jquery選擇多個複選框
的[從獲取列表視圖中選擇聯繫人的詳細信息]可能重複(http://stackoverflow.com/questions/12338160/get-details-of-contact-selected-from-list -view) – Luksprog
@Luksprog它在任何情況下都不是重複的。如果你不能幫助,那麼你應該更好地離開。 –