Android基础(1):Intent和Activity

时间:2022-04-02 14:08:58

本文介绍了Android开发中的Intent和Activity的一些参考链接,并提供了一个事件监听器的代码示例。
1、Android Intents教程:http://www.vogella.com/tutorials/AndroidIntent/article.html#usingintents_call
2、http://developer.android.youdaxue.com/reference/android/view/View.html#attr_android:onClick解释了在 Activity 类中定义新方法的格式(以便处理视图的 onClick 属性)。
3、显式 intent 示例:http://developer.android.youdaxue.com/guide/components/intents-filters.html#ExampleExplicit
隐式 intent 示例:http://developer.android.youdaxue.com/guide/components/intents-filters.html#ExampleSend
如何创建隐式 intent 来播放音乐或视频文件:http://developer.android.youdaxue.com/guide/components/intents-common.html#Music
如何创建隐式 intent 来发送短信或彩信:http://developer.android.youdaxue.com/guide/components/intents-common.html#Messaging
4、更改Activity的标题栏,在AndroidManifest.xml文件中将要改标题栏的Activity中加入android:label=”名字”。
5、Android 中的事件监听器,输入事件:http://developer.android.youdaxue.com/guide/topics/ui/ui-events.html
6、词汇术语表:https://s3.cn-north-1.amazonaws.com.cn/static-documents/nd803/Android+for+All+%EF%BC%8D+Vocabulary+Glossary.pdf
7、关于 Android 中 clickListener 的简短帖子示例:http://*.com/questions/8977212/button-click-listeners-in-android
http://www.mkyong.com/android/android-button-example/
8、onCreate方法中利用事件监听器实现点击跳转到另一Activity代码示例:

        // Find the View that shows the numbers category
TextView numbers = (TextView) findViewById(R.id.numbers);
// Set a click listener on that View
numbers.setOnClickListener(new View.OnClickListener() {
// The code in this method will be executed when the numbers View is clicked on.
@Override
public void onClick(View view) {
Intent numbersIntent = new Intent(MainActivity.this, NumbersActivity.class);

startActivity(numbersIntent);
}
});