jeans chen
we've got them by the balls
摘要: android.intent.action.MAIN与android.intent.category 分类: Android 理論知識 2011-06-15 09:55 4461人阅读 评论(9) 收藏 举报androidapplicationactionxml<activity android:name="APAct"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name=&quo 阅读全文
posted @ 2013-06-03 18:12 jeans chen 阅读(2730) 评论(0) 推荐(0)
摘要: IntentFilter http://blog.csdn.net/today520/article/details/7000048 分类: 移动开发 2011-11-22 13:31 2033人阅读 评论(2) 收藏 举报androidschemeactionemailpathsms当Intent在组件间传递时,组件如果想告知Android系统自己能够响应和处理哪些Intent,那么就需要用到IntentFilter对象。 顾名思义,IntentFilter对象负责过滤掉组件无法响应和处理的Intent,只将自己关心的Intent接收进来进行处理。 IntentFilter实行“白... 阅读全文
posted @ 2013-06-03 18:04 jeans chen 阅读(157) 评论(0) 推荐(0)
摘要: AndroidManifest.xml uses-feature 详解 分类: Android 2012-06-26 22:16 2203人阅读 评论(1) 收藏 举报android游戏图形integerstring手机如果你是一个Android用户,而且你有一个老旧的安装有android 1.5 的android设备,你可能会注意到一些高版本的应用没有在手机上的Android Market 中显示。这必定是应用使用了<uses-feature>的结果。Android Market会根据uses-feature过滤所有你设备不支持的应用。通过使用<uses-feature&g 阅读全文
posted @ 2013-06-03 16:28 jeans chen 阅读(196) 评论(0) 推荐(0)
摘要: android之Fragment(官网资料翻译) http://blog.csdn.net/aomandeshangxiao/article/details/7671533 分类: Android及相关 2012-06-17 23:43 15561人阅读 评论(39) 收藏 举报androidAndroidANDROIDfragmentFragmentjavaJavaJAVAuiUI官网目录(?)[+]Fragment要点Fragment作为Activity界面的一部分组成出现可以在一个Activity中同时出现多个Fragment,并且,一个Fragment亦可在多个Activity中使.. 阅读全文
posted @ 2013-06-03 13:38 jeans chen 阅读(369) 评论(0) 推荐(0)
摘要: http://www.cnblogs.com/wisekingokok/archive/2011/08/23/2150452.htmlFrameLayout: FrameLayout是五大布局中最简单的一个布局, 在这个布局中,整个界面被当成一块空白备用区域,所有的子元素都不能被指定放置的位置,它们统统放于这块区域的左上角,并且后面的子元素直接覆盖在前面的 子元素之上,将前面的子元素部分和全部遮挡。显示效果如下,第一个TextView被第二个TextView完全遮挡,第三个TextView遮挡了第二 个TextView的部分位置。FrameLayout AbsoluteLayout: A... 阅读全文
posted @ 2013-06-03 11:15 jeans chen 阅读(253) 评论(0) 推荐(0)
摘要: http://blog.csdn.net/randyjiawenjie/article/details/6651437 Android Bundle类 分类: Android学习 2011-08-01 17:27 18578人阅读 评论(25) 收藏 举报androidlayoutbuttonencodingstringimport今天发现自己连Bundle类都没有搞清楚,于是花时间研究了一下。根据google官方的文档(http://developer.android.com/reference/android/os/Bundle.html)Bundle类是一个key-value对,“A.. 阅读全文
posted @ 2013-06-03 10:36 jeans chen 阅读(205) 评论(0) 推荐(0)