spinner.setOnItemSelectedListener(新OnItemSelectedListener(){ Android的id獲取問題
@Override
public void onItemSelected(AdapterView<?> parent, View arg1,
int pos, long arg3)
{
String name;
name=parent.getItemAtPosition(pos).toString();
String[] projection1 = new String[]{
People._ID
};
Cursor pCur=getContentResolver().query(People.CONTENT_URI, projection1,People._ID+"="+name,null,null);
pCur.moveToFirst();
if(pCur.moveToFirst())
{
String id;
int x=0;
do
{
id=pCur.getString(pCur.getColumnIndex(People._ID));
Toast.makeText(parent.getContext(),"resule::"+id,Toast.LENGTH_LONG).show();
x++;
}while(pCur.moveToNext());
}
}
public void onNothingSelected(AdapterView<?> arg0)
{
// DO Nothing
}
});
我在安卓development.spinner新手有我想要得到特定的ID name.please幫助我的所有聯繫人姓名。
在此先感謝
問候 Arpit特里維迪
從旋轉列表獲取特定的ID? –
謝謝尼科拉,如果我想從spinner選擇的名稱的聯繫號碼,我該怎麼做,請幫助我。 – Arpit