
android
风中的猴尾巴
我很懒!
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Android基础UI编程(1)
1.关于Color的基础知识原创 2010-10-08 23:40:00 · 614 阅读 · 0 评论 -
Android中的category大全
Android.intent.category.ALTERNATIVE android.intent.category.BROWSABLE android.intent.category.DEFAULT android.intent.category.DEVELOPMENT_PREFERENCE android.intent.category.EMBED android.intent.category.HOME android.intent.category.INFO android.inte转载 2010-10-07 23:07:00 · 541 阅读 · 0 评论 -
Android权限列表permission说明
太全了,保存到自己这里来,怕以后找不到! public static final String BROADCAST_PACKAGE_REMOVED允许应用程序发出一个应用程序被删除的通知。常量值: "android.permission.BROADCAST_PACKAGE_REMOVED"public static final String CALL_PHONE允许应用程序发起一个电话呼叫而不需要经拨号器用户界面确认。常量值: "android.permission.CALL_PHONE"public st转载 2010-10-07 22:56:00 · 862 阅读 · 0 评论 -
Bundle(1)
1.测试设置测试使用两个类HelloWorld和Report,通过点击HelloWorld的按钮把消息传递到Report显示出来。2.测试内容学习怎么在两个Activity之间传递消息,因为是初学暂时使用Intent来测试,不知道有没有其他的传递消息的方法。3.测试目的测试如何通过将ActivityA的内容传递到ActivityB中,包括返回数据和不返回数据两种。4.过程记录a.通过Intent传递内容,查阅资料,关于Intent的理解如下: Intent英语中的意思是“目的”,在android的应用程原创 2010-10-07 22:55:00 · 387 阅读 · 0 评论 -
Bundle(2)
昨天写到了Intent,在网上找了半天资料,找到一个写的最好的,结果后来一看SDK,原来就是翻译的SDK,看来还是最好看SDK,今天装了一个金山词霸,准备连猜带蒙看文档了! Intent建立了,需要通过Bundle来传递数据,Bundle感觉就像是信封。Bundle的构造函数有几种,分别是 Bundle() Bundle(ClassLoader loader) Bundle(capacity) Bundle(Bundle b) Bundle具体的用法就是类似一个hashtabl原创 2010-10-08 20:58:00 · 1023 阅读 · 0 评论