发布时间:2013-02-21 16:59:05
thats a Bug in 2.1, 2.2A possible workaround could be:ImageView rocketImage = (ImageView) layout.findViewById(R.id.animation); rocketImage.setBackgroundResource(R.drawable.progress_blue_animation); rocketAnimation = (AnimationDrawable) rocketImage.getBackground.........【阅读全文】
发布时间:2013-02-04 17:06:34
unsigned long getCurrentMillis() {struct timespec now;clock_gettime(CLOCK_MONOTONIC, &now);return ((unsigned long)now.tv_sec * 1000000000LL + now.tv_nsec)/1000000;}tv_nsec是10^9秒......【阅读全文】
发布时间:2013-01-29 18:07:58
短信content://mms-sms/conversations?simple=true查threads表content://mms-sms/canonical-addresses/查canonicall-addresses表content://mms pdu表content://sms sms表miss callUri.withAppendedPath(CallLog.CONTENT_URI, "calls");contactsUri.withAppe.........【阅读全文】
发布时间:2013-01-29 11:57:18
总结的不错,收藏了数据表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表用于存储待发送或下载的短信与彩信(有.........【阅读全文】