开启新的activity获取它的返回值

1、开始界面

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context=".MainActivity" >

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        >
        <EditText
            android:id="@+id/et_number"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:hint="请输入联系人" />
        <Button
            android:onClick="click"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="联系人"
            />
    </LinearLayout>
     <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        >
        <EditText
            android:id="@+id/et_number2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:hint="请输入联系人" />
        <Button
            android:onClick="click2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="联系人2"
            />
    </LinearLayout>

</LinearLayout>

2、开启新的activity代码

 1 package com.example.smssender;
 2
 3 import android.os.Bundle;
 4 import android.app.Activity;
 5 import android.content.Intent;
 6 import android.view.Menu;
 7 import android.view.View;
 8 import android.widget.EditText;
 9
10 public class MainActivity extends Activity {
11
12     private EditText et_number;
13     private EditText et_number2;
14     @Override
15     protected void onCreate(Bundle savedInstanceState) {
16         super.onCreate(savedInstanceState);
17         setContentView(R.layout.activity_main);
18         et_number = (EditText) findViewById(R.id.et_number);
19         et_number2 = (EditText) findViewById(R.id.et_number2);
20     }
21
22     public void click(View view){
23         Intent intent = new Intent(this, ContactActivity.class);
24         //startActivity(intent);
25         //请求码的作用是区别是谁发起的请求
26         startActivityForResult(intent, 1);
27     }
28
29     public void click2(View view){
30         Intent intent = new Intent(this, ContactActivity.class);
31         //startActivity(intent);
32         //请求码的作用是区别是谁发起的请求
33         startActivityForResult(intent, 2);
34     }
35
36
37     @Override
38     protected void onActivityResult(int requestCode, int resultCode, Intent data) {
39         // TODO Auto-generated method stub
40         super.onActivityResult(requestCode, resultCode, data);
41         if(data != null){
42             String number = data.getStringExtra("number");
43             if(requestCode == 1){
44                 et_number.setText(number);
45             }else{
46                 et_number2.setText(number);
47             }
48         }
49     }
50
51 }

3、获取联系人

1)清单文件

  <uses-permission android:name="android.permission.READ_CONTACTS"/>//权限

2)通过内容提供者获取联系人

 1 package com.example.smssender;
 2
 3 import java.util.ArrayList;
 4 import java.util.List;
 5
 6 import android.content.ContentResolver;
 7 import android.content.Context;
 8 import android.database.Cursor;
 9 import android.net.Uri;
10
11 public class ContactService {
12     public static List<contactInfo> getContactAll(Context context){
13         List<contactInfo> infos = new ArrayList<contactInfo>();
14         //通过内容提供者获取联系人
15         ContentResolver resolver = context.getContentResolver();
16         Uri uri = Uri.parse("content://com.android.contacts/raw_contacts");
17         Uri dataUri = Uri.parse("content://com.android.contacts/data");
18         Cursor cursor = resolver.query(uri, null, null, null, null);
19         while(cursor.moveToNext()){
20             String id = cursor.getString(cursor.getColumnIndex("contact_id"));
21             Cursor datacursor = resolver.query(dataUri, null, "raw_contact_id=?", new String[]{id}, null);
22             contactInfo info = new contactInfo();
23             while(datacursor.moveToNext()){
24                 String data1 = datacursor.getString(datacursor.getColumnIndex("data1"));
25                 String mimetype = datacursor.getString(datacursor.getColumnIndex("mimetype"));
26                 if("vnd.android.cursor.item/name".equals(mimetype)){
27                     info.setUsername(data1);
28                 }else if("vnd.android.cursor.item/phone_v2".equals(mimetype)){
29                     info.setNumber(data1);
30                 }
31             }
32
33             infos.add(info);
34
35         }
36         return infos;
37     }
38 }

4、设置联系人进Listview

 1 <?xml version="1.0" encoding="utf-8"?>
 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 3     android:layout_width="match_parent"
 4     android:layout_height="match_parent"
 5     android:orientation="vertical" >
 6
 7     <ListView
 8         android:layout_width="match_parent"
 9         android:layout_height="match_parent"
10         android:id="@+id/lv_contact"
11         ></ListView>
12
13 </LinearLayout>
 1 <?xml version="1.0" encoding="utf-8"?>
 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 3     android:layout_width="match_parent"
 4     android:layout_height="match_parent"
 5     android:orientation="vertical" >
 6
 7     <TextView
 8         android:id="@+id/et_username"
 9         android:layout_width="match_parent"
10         android:layout_height="wrap_content"
11         />
12     <TextView
13         android:id="@+id/et_number"
14         android:layout_width="match_parent"
15         android:layout_height="wrap_content"
16         />
17
18 </LinearLayout>

java代码:

 1 package com.example.smssender;
 2
 3 import java.util.List;
 4
 5 import android.app.Activity;
 6 import android.content.ContentResolver;
 7 import android.content.Intent;
 8 import android.database.Cursor;
 9 import android.net.Uri;
10 import android.os.Bundle;
11 import android.view.View;
12 import android.view.ViewGroup;
13 import android.widget.AdapterView;
14 import android.widget.AdapterView.OnItemClickListener;
15 import android.widget.BaseAdapter;
16 import android.widget.ListView;
17 import android.widget.TextView;
18
19 public class ContactActivity extends Activity {
20
21     private ListView lv_contact;
22     private List<contactInfo> infos = null;
23     @Override
24     protected void onCreate(Bundle savedInstanceState) {
25
26         // TODO Auto-generated method stub
27         super.onCreate(savedInstanceState);
28         setContentView(R.layout.activity_contact);
29
30         infos = ContactService.getContactAll(this);
31
32         lv_contact = (ListView)findViewById(R.id.lv_contact);
33         lv_contact.setAdapter(new ContactAdapter());
34
35         lv_contact.setOnItemClickListener(new OnItemClickListener() {
36
37             @Override
38             public void onItemClick(AdapterView<?> arg0, View arg1, int arg2,
39                     long arg3) {
40                 // TODO Auto-generated method stub
41                 contactInfo info = infos.get(arg2);
42                 String number = info.getNumber();
43                 Intent data = new Intent();
44                 data.putExtra("number", number);
45                 setResult(0, data);
46                 //关闭当前activity,把数据传回给它的激活者
47                 finish();
48
49             }
50
51         });
52     }
53
54     private class ContactAdapter extends BaseAdapter{
55
56         @Override
57         public int getCount() {
58             // TODO Auto-generated method stub
59             return infos.size();
60         }
61
62         @Override
63         public Object getItem(int arg0) {
64             // TODO Auto-generated method stub
65             return null;
66         }
67
68         @Override
69         public long getItemId(int arg0) {
70             // TODO Auto-generated method stub
71             return 0;
72         }
73
74         @Override
75         public View getView(int arg0, View arg1, ViewGroup arg2) {
76             // TODO Auto-generated method stub
77             contactInfo info = infos.get(arg0);
78             View view = View.inflate(ContactActivity.this, R.layout.contact_item, null);
79             TextView et_username = (TextView)view.findViewById(R.id.et_username);
80             et_username.setText(info.getUsername());
81
82             TextView et_number = (TextView)view.findViewById(R.id.et_number);
83             et_number.setText(info.getNumber());
84
85             return view;
86         }
87
88     }
89
90 }
时间: 2024-10-27 13:23:36

开启新的activity获取它的返回值的相关文章

无废话Android之activity的生命周期、activity的启动模式、activity横竖屏切换的生命周期、开启新的activity获取他的返回值、利用广播实现ip拨号、短信接收广播、短信监听器(6)

1.activity的生命周期 这七个方法定义了Activity的完整生命周期.实现这些方法可以帮助我们监视其中的三个嵌套生命周期循环: (1)Activity的完整生命周期 自第一次调用onCreate()开始,直到调用onDestory()为止.Activity在onCreate()中设置所有“全局”状态以完成初始化. 而在onDestory()中释放所有系统资源.例如,如果Activity有一个线程在后台运行从网络下载数据,它会在onCreate()创建线程, 而在onDestory()销

[android] 开启新的activity获取他的返回值

应用场景:打开一个新的activity,在这个activity上获取数据,返回给打开它的界面 短信发送时,可以直接选择系统联系人 界面布局是一个线性布局,里面右侧选择联系人在EditText的右上,因此使用相对布局对输入框进行包裹,按钮使用android:layout_alignParentRight=”true”处理 下面的内容有多行,使用 属性android:inputType=”textMultiLine” 属性android:minLines=”5” 我们使用hvg的屏幕进行预览 打开一

python asyncio 获取协程返回值和使用callback

Reference from: https://www.cnblogs.com/callyblog/p/11216961.html 1. 获取协程返回值,实质就是future中的task import asyncioimport timeasync def get_html(url): print("start get url") await asyncio.sleep(2) return "bobby" def callback(url, future): pri

利用SQLServer查询分析器获取存储过程的返回值,检查测试存储过程

1.存储过程没有返回值的情况(即存储过程语句中没有return之类的语句)用方法 int count = ExecuteNonQuery(..)执行存储过程其返回值只有两种情况(1)如果通过查询分析器执行该存储过程,在显示栏中如果有影响的行数,则影响几行count就是几(2)如果通过查询分析器执行该存储过程,在显示栏中如果显示'命令已成功完成.'则count = -1;在显示栏中如果有查询结果,则count = -1总结:A.ExecuteNonQuery()该方法只返回影响的行数,如果没有影响

shell获取函数的返回值

背景:定义了一个函数,比对本地和线上服务器集群数量差别,想要获取不同集群的个数.shell和其他语言的函数返回值还是差别挺大的. 定义一个函数 functionname(){ 操作内容 echo 输出内容 return 返回值 #返回值可有可不有 } 获得函数的返回值 1.函数默认是将标准输出传递出来,不是返回值. 所以如果直接调用functionname,实际上是将输出传递回来 例如: a=`functionname` 将函数functionname的标准输出传递给a 2.调用函数不需要加()

数据库操作--获取存储过程的返回值

用SQL Server数据库写了个存储过程,代码如下 <span style="font-family:KaiTi_GB2312;font-size:18px;">create procedure proc_select @id int as begin if exists(select * from news where [email protected]) return 1 else return 2 end </span> 在C#中通过执行存储过程来获取返

WebService,ASMX文件使用XML格式数据传递参数、验证与获取XML格式返回值的一种方式

1:首先WebService方法定义,每个方法定义两个参数,一个用于验证权限,string格式的XML文本用于传输数据.最终目的实现,WebService方法,验证权限,获取XML数据,处理之后返回XML数据.一下面一段代码为例进行说明: [WebMethodAttribute(Description = "新增督学计划")] public string InspectorPlan_Add(string Token, string XMLParas) { try { //安全凭证检查

【起航计划 028】2015 起航计划 Android APIDemo的魔鬼步伐 27 App-&gt;Preferences-&gt;Launching preferences 其他activity获取Preference中的值

前给例子介绍了如何使用PreferenceActivity 来显示修改应用偏好,用户对Preferences的修改自动存储在应用对应的Shared Preferences中. 本例介绍了如何从一个Activity来取得由PreferenceActivity 的Preference值. 比如在实际应用中通过PreferenceActivity界面来取得用户偏好或是配置. 因为希望从PreferenceActivity返回值,所以使用startActivityForResult 来启动Prefere

如何在函数外部获取ajax的返回值?

问题:今天在开发的过程中,遇到一个小问题,就是在将ajax获取数据部分的代码封装在函数内,将ajax获取的值作为函数的返回值. 抱着爱钻研的精神,最终得到了解决方案,在这里整理出来方便以后查阅. 尝试1:同步调用,直接在ajax函数中return值 function getAjax(){ var result = 1; $.ajax({ url : 'test.php', type : "post", data : {}, async : false, success : functi