alex_bn_lee

导航

2012年8月13日 #

【070】Android 中相关功能的实现代码

摘要: ☀.☀ ---<< 目录 >>-----点击两次back退出程序点击按钮后在状态栏显示通知实现用代码来布局控件的实现☀.☀ ---<< 001. 点击两次back退出程序 >>----- 1 private long exitTime = 0; 2 3 @Override 4 public boolean onKeyDown(int keyCode, KeyEvent event) { 5 if (keyCode == KeyEvent.KEYCODE_BACK 6 && event.getAction() ... 阅读全文

posted @ 2012-08-13 19:21 McDelfino 阅读(306) 评论(0) 推荐(0)

【069】Android 中的 Manifest.xml

摘要: AndroidManifest.xml:概括性描述1. <application>2. <activity>3. <intent-filter>4. <action>5. <action>6. <action>7. <action>8. <action>下面内容参考:Beginning Android 4 Application Development Page31.1. <application> 第一梯队, 在最外面.contained in:<manifest>can 阅读全文

posted @ 2012-08-13 14:13 McDelfino 阅读(287) 评论(0) 推荐(0)