首页 > 其他 > 详细

activity的开启和关闭数据返回

时间:2015-04-03 19:01:57      阅读:163      评论:0      收藏:0      [点我收藏+]

1.打开的activity需要在清单文件中设置:

<activity name ="" icon="">

  <intent-filter>

    <action name="acfroid.intent.action.MAIN">

    <catogory name="android.intent.catagory.LAUNCHER"/>

  </intent-filter>

</activity>

2.开启一个activity

(1)开启一个一直的activity

Intent intent = new Intent(this, SignInActivity.class); startActivity(intent);
(2)开启一个短信
Intent intent = new Intent(Intent.ACTION_SEND); intent.putExtra(Intent.EXTRA_EMAIL, recipientArray); startActivity(intent);
3.打开activity的数据返回
private void pickContact() {    
// Create an intent to "pick" a contact, as defined by the content provider URI    
Intent intent = new Intent(Intent.ACTION_PICK, Contacts.CONTENT_URI);    
startActivityForResult(intent, PICK_CONTACT_REQUEST);
}
@Override protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    // If the request went well (OK) and the request was PICK_CONTACT_REQUEST
    if (resultCode == Activity.RESULT_OK && requestCode == PICK_CONTACT_REQUEST) {  
      // Perform a query to the contact‘s content provider for the contact‘s name  
      Cursor cursor = getContentResolver().query(data.getData(),
        new String[] {Contacts.DISPLAY_NAME}, null, null, null);
        if (cursor.moveToFirst()) {
        // True if the cursor is not empty
            int columnIndex = cursor.getColumnIndex(Contacts.DISPLAY_NAME)
            String name = cursor.getString(columnIndex);
            // Do something with the selected contact‘s name...         }     } }














activity的开启和关闭数据返回

原文:http://www.cnblogs.com/mylanlan-802888/p/4390475.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!