码迷,mamicode.com
首页 >  
搜索关键字:intent based    ( 6181个结果
采用contentprivider扫描手机SD卡的图片资源
Intent inten = new Intent( Intent.ACTION_PICK,MediaStore.Images.Media.EXTERNAL_CONTENT_URI); startActivityForResult(inte...
分类:移动开发   时间:2014-05-26 22:50:19    阅读次数:369
Intent启动照片或者相机
1、Intent intent = new Intent(Intent.ACTION_GET_CONTENT); intent.setType("image/*"); intent.putExtra("crop", true); in...
分类:其他好文   时间:2014-05-26 12:00:15    阅读次数:230
NSTimer是不一定准时
NSTimer是不一定准时的,是有可能被delay的,每次间隔的时间是不一定一样的。A repeating timer reschedules itself automatically based on the scheduled firing time, not the actual firing...
分类:其他好文   时间:2014-05-26 10:03:30    阅读次数:230
the philosophy behind of the design of the STL
The concept of STL is based on a separation of data and operations. The data is managed by container classes, and the operations are defined by config...
分类:其他好文   时间:2014-05-26 09:43:55    阅读次数:288
[原]【推荐系统】协同过滤之基于用户的最近邻推荐
1.算法简介协同过滤(collaborative filtering)的核心思想:利用其他用户的行为来预测当前用户。协同过滤算法是推荐系统中最基本的,同时在业界广为使用。根据使用的方法不同,可以分为基于用户(user-based)、基于物品(item-based)的最近邻推荐。基于用户的最近邻推荐的...
分类:其他好文   时间:2014-05-24 13:23:43    阅读次数:392
Apache配置多个网站的方法
Apache的虚拟主机是一种允许在同一台机器上,运行超过一个网站的解决方案。虚拟主机有两种,一种叫基于IP的(IP-based),另一种叫基于名字的(name-based)。虚拟主机的存在,对用户来说是透明的。基于IP的虚拟主机:对于基于IP的虚拟主机来说,必须为每个虚拟主机配备一个单独的IP。也就...
分类:Web程序   时间:2014-05-24 09:27:03    阅读次数:257
Django 1.6 CBVs
Django 1.6 最佳实践: 如何正确使用 CBVs (Class-based views) Class-based views是Django为解决建站过程中的常见的呈现模式而建立的. 在这节中, 我们着重讲一下CBVs的使用技巧和一般原则. 1. CBVs的使用原则 代码越少越好永远不要重复代码View应当只包含呈现逻辑, 不应包括业务逻辑保持view逻辑清...
分类:其他好文   时间:2014-05-22 23:22:14    阅读次数:299
Intent 和 Intent Filter简介
Intent 是一个消息对象,你可以用它向另一个 app 组件发生动作请求。尽管 Intent 在促进组件间沟通的方式有多种,主要有个以下三种基本方式:...
分类:其他好文   时间:2014-05-22 23:01:27    阅读次数:286
调用录音界播放音频文件
/* 播放录音文件 */private void playMusic(File file){Intent intent = new Intent();intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);intent.setAction(android.con...
分类:其他好文   时间:2014-05-22 15:18:27    阅读次数:269
调取系统相机、并将图片展示在ImageView上
package com.ting.textcover;import java.io.File;import android.app.Activity;import android.content.Intent;import android.graphics.Bitmap;import android...
分类:其他好文   时间:2014-05-22 14:30:14    阅读次数:321
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!