Android Note 1 如何在不同页面间切换
- 作者:大锐哥
- 博客:http://blog.csdn.net/prevention
本人是一个 UI 设计师、iOS 工程师及 Server 端工程师,其中 Server 端的主要经验在 C++ 和 Java,对 Android 不了解。这是一个新手笔记,预计在 6 月内完成一个系列,之后开始着手一个 Android 项目。
这只是给本人自己看的笔记,如你觉得帮助到你,我感到很高兴;如果你感到不适,活该。
如何从一个 Activity 转到另一个 Activity 并携带数据?
通过 Intent 在不同页面之间切换。如果从 Activity X 到 Activity Y,则如下:
Intent intent = new Intent(this, ActivityY.class);
intent.putExtra(EXTRA_MESSAGE, "new page");
startActivity(intent);
其中
- To finish the intent, call the
startActivity()
method, passing it to theIntent
object- An
Intent
can carry data types as key-value pairs called extras. TheputExtra()
method takes the key name in the first parameter and the value in the second parameter.
在新的 Activity 中如何接收数据?
在 Activity Y 中必须有 onCreate 方法:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Intent intent = getIntent();
String message = intent.getStringExtra(ActivityX.EXTRA_MESSAGE);
TextView textView = new TextView(this);
textView.setTextView(40);
textView.setText(message);
setContentView(textView);
}
与 iOS 的对比
从这一点看,Android 要更 friendly 一些。iOS 中从一个页面push
或present
到另一个页面(一个 UIViewController
),是无法这么 elegant 地携带数据的。只能很 ugly 地定义新的init
方法或者在新的页面中定义可被外部访问并可写的property
。
转载请注明来自 http://blog.csdn.net/prevention - 作者:大锐哥 - 博客:http://blog.csdn.net/prevention