package com.ango.deskclock;
import android.content.Context;
import android.content.Intent;
import android.os.Handler;
import android.os.HandlerThread;
/**
* Helper class for managing the background...
分类:
其他好文 时间:
2014-08-09 15:55:18
阅读次数:
201
android中通过Intent调用系统拍照程序,返回图片太小的问题的解决...
分类:
其他好文 时间:
2014-08-09 11:43:47
阅读次数:
271
Intents 和 Intent Filters (Intent译为意图,让人比较费解,实际上解释为“消息”更加合理,干脆就不翻译了) Intent是能在app组件间传递的消息体,基本使用方式有如下三种: 启动activity startActivity:intent描述需要启动的activity和...
转载请注明出处:
http://blog.csdn.net/suool/article/details/38444149, 谢谢!
进程通信概述
在Linux系统中,进程是一个独立的资源管理单元,但是独立而不孤立,他们需要之间的通信,因此便需要一个进程间数据传递、异步、同步的机制,这个机制显然需要由OS来完成管理和维护。如下:
1、同一主机进程间数据交互机制:无名管道(PIPE)...
分类:
系统相关 时间:
2014-08-09 00:19:36
阅读次数:
483
1,实现tabhost自定义格式,再此仅仅显示背景和文字,效果图预览:(底边栏所示) (图片变形)2,xml配置activity_user的XML配置 1 8 9 15 23 24 29 30 31 32 ...
分类:
移动开发 时间:
2014-08-08 23:52:46
阅读次数:
426
Activity的加载模式是在清单文件AndroidManifest.xml文件中进行设置<activityandroid:name="...."android:label="@string/app_name"android:launchMode="singleTask"(Activity的加载模式)android:theme="@android:style/Theme.Light.NoTitleBar"></activity>1、sta..
分类:
其他好文 时间:
2014-08-07 07:26:09
阅读次数:
1065
作者:Vamei 出处:http://www.cnblogs.com/vamei 欢迎转载,也请保留这段声明。谢谢!在安卓第三夜 概念漫游(上)中,我介绍了安卓最基本的功能单元和Intent的连接方式。在这个骨架之上,我们可以进一步增加一些与开发密切相关的重要概念。Context一个应用是由多个Ac...
分类:
移动开发 时间:
2014-08-07 00:45:17
阅读次数:
208
众所周知,在Android中调用其他程序进行相关处理,几乎都是使用的Intent,所以,Email也不例外。在Android中,调用Email有三种类型的Intent: Intent.ACTION_SENDTO 无附件的发送 Intent.ACTION_SEND 带附件的发送 Intent.A...
分类:
移动开发 时间:
2014-08-06 18:29:31
阅读次数:
211
更加详细的介绍有关意图的使用,运用Category在应用中做出不同的效果...
分类:
其他好文 时间:
2014-08-06 14:56:01
阅读次数:
465
一、打开其它应用程序[以打开QQ为例]1 Intent intent = new Intent();2 ComponentName cmp = new ComponentName("com.tencent.mobileqq","com.tencent.mobileqq.activit...
分类:
其他好文 时间:
2014-08-06 10:24:01
阅读次数:
165