码迷,mamicode.com
首页 > 其他好文 > 详细

第六天 页面跳转和数据传递

时间:2016-05-14 16:46:35      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:

1.  横竖屏切换是时候 会调用 oncreate , onstart  , 重建 。 在清单中 activity 中添加    。重建为横竖屏 适配  加载不同的 布局文件。

    android:configChanges="keyboardHidden|orientation|screenSize"     就不会重建。

 

2 。显示启动 Intent intent = new Intent();

       intent.setClass(this, second.class);  //启动本应用程序的

3. 隐式启动  Intent intent = new Intent();

       intent.setAction(Intent.ACTION_CALL);
            intent.setData(Uri.parse("tel+:110"));   

   在配置清单里面 设置 Action 和 data

4.  startActivityForResult activity 返回数据接受 

  onActivityResult 接受返回的数据

  setResult(resultCode, data)  发送返回数据。

 

第六天 页面跳转和数据传递

标签:

原文地址:http://www.cnblogs.com/XingzhiDai/p/5492737.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!