发布时间:2015-08-17 17:59:41
总结的不错,收藏了数据表MMS模块总共包含17张表:addr、android_metadata、attachments、canonical_addresses、drm、part、pdu、pending_msgs、rate、raw、sms、sr_pending、threads、words、words_content、words_segdir、words_segments。其中,pending_msgs表用于存储待发送或下载的短信与彩信(有.........【阅读全文】
发布时间:2014-08-11 17:02:48
Intent mIntent = new Intent();ComponentName comp = new ComponentName("需要启动的APK包名","需要启动的APK入口类(包名也要写上)");mIntent.setComponent(comp);mIntent.setAction("android.intent.action.MAIN");startActivity(mIntent);......【阅读全文】
发布时间:2014-08-04 14:15:11
frameworks/base/policy/src/com/android/internal/policy/impl/PhoneWindowManager.java@@ -656,7 +656,7 @@ public class PhoneWindowManager implements WindowManagerPolicy { private void interceptPowerKeyDown(boolean handled) { mPowerKeyHandled = handled; if (!handled) {- .........【阅读全文】