我编写了一个应用程序来发送关联短信,我需要您的帮助...我想通过联系人选择器从联系人中检索手机号码。我无法检索用户选择的结果...
我的代码:
public class MainActivity extends Activity {
private static final int CONTACT_PICKER_RESULT = 0;
private Button contacts = null;
private Button envoyer = null;
private TextView mobile = null;
private int PICK_CONTACT;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// Elements of th activity
contacts = (Button) findViewById(R.id.contacts);
envoyer = (Button) findViewById(R.id.envoyer);
mobile = (TextView) findViewById(R.id.mobile);
contacts.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
Intent contactPickerIntent = new Intent(Intent.ACTION_PICK, Phone.CONTENT_URI);
startActivityForResult(contactPickerIntent, 1001);
}
});
envoyer.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
}
});
}
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
// How to retrieve the mobile and the name of the contact selected ?
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.activity_main, menu);
return true;
}
public void open_contacts(){
}
}
非常感谢你... !