码迷,mamicode.com
首页 > 移动开发
小白学jquery Mobile《构建跨平台APP:jQuery Mobile移动应用实战》连载五(给按钮加图标)
微信的按钮好看不?微信历经那么多的改版,才有稍微好看点的按钮,那jqm默认的按钮什么样子,如何使用呢?翠花~~~~上例子~~~...
分类:移动开发   时间:2014-07-26 03:00:16    阅读次数:317
graph driver-device mapper-02driver基本操作
// 清除thin pool 1.1 func (d *Driver) Cleanup() error { // 停止thin pool err := d.DeviceSet.Shutdown() return err } // 当加载新镜像时,添加一个新thin device // id为containerid或imageid 1.2 func (d *Driver) Create(i...
分类:移动开发   时间:2014-07-26 02:59:46    阅读次数:302
C#程序员学习Android开发系列之按钮事件的4种写法
经过前两篇blog的铺垫,我们今天热身一下,做个简单的例子。目录结构还是引用上篇blog的截图。具体实现代码:public class MainActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceStat...
分类:移动开发   时间:2014-07-26 02:58:46    阅读次数:349
PhoneGap/Cordova Android应用签名发布注意事项
今天终于要发布Android HybirdApp了,安装以前做原生应用的流程发布签名Apk,没想到马上遇到了几个问题,现在把它们的解决办法整理下来。 export signed Apk 遇到下面错误,这个问题是多次读取inputStream导致的,貌似和eclise的自动编译有关,解决办法是关掉相关工程的自动编译。 Export Signed APK 前先將 Eclipse 的 Pro...
分类:移动开发   时间:2014-07-26 02:58:36    阅读次数:316
手机管理应用研究【6】——省电管理篇
说明 本篇将介绍省电管理篇,主要介绍一下Android的耗电情况和目前市面上《电池助手》类应用涉及到的一些技术点。本篇将对这些知识点做一下总结和分析。主要包括: A.       电池信息(耗电排行) B.       省电管理 C.       剩余可用时间估算等 耗电分析 手机耗电分析 以我的手机(小米2S)为例,首先来看一下我的手机的电池...
分类:移动开发   时间:2014-07-26 02:58:16    阅读次数:363
IOS总结_实现UIButton的图文混排,同时显示文字和图片
我们常常需要用到按钮需要文字和图片同时显示,例如: 我们需要定义一个UIButton的子类 实现文件 - (id)initWithFrame:(CGRect)frame {     self = [super initWithFrame:frame];     if (self) {         //可根据自己的需要随意调整       ...
分类:移动开发   时间:2014-07-26 02:57:06    阅读次数:265
Android TextView中有图片有文字混合排列
Android TextView中有图片有文字混合排列...
分类:移动开发   时间:2014-07-26 02:56:26    阅读次数:206
收藏的Android非常好用的组件或者框架。
开源框架和开源网站收藏!!!!...
分类:移动开发   时间:2014-07-26 02:55:46    阅读次数:244
cocos2dx 遮罩层 android 手机上 失败
cocos2dx 遮罩层android真机机上失败的解决方案...
分类:移动开发   时间:2014-07-26 02:54:46    阅读次数:233
graph driver-device mapper-03thin pool基本操作
// 在thin pool中创建一个新thin device // 调用路径:driver.Create() 1.1 func (devices *DeviceSet) AddDevice(hash, baseHash string) error { //查找父device baseInfo, err := devices.lookupDevice(baseHash) if err != n...
分类:移动开发   时间:2014-07-26 02:53:26    阅读次数:347
iOS_7_scrollView大图缩放
最终效果图: BeyondViewController.h // // BeyondViewController.h // 7_scrollView大图展示 // // Created by beyond on 14-7-24. // Copyright (c) 2014年 com.beyond. All rights reserved. // #import...
分类:移动开发   时间:2014-07-26 02:49:16    阅读次数:217
iOS_代理设计模式demo
main.m // // main.m // 代理设计模式 /* 代理设计模式的3种使用场合 1,A 想让B 帮他做些事情, 可以让B成为A的代理先 2,A 想通知B,A发生了一些事情,可以让B成为A的代理先 3,B 想监听A发生了一些事情, 可以让B成为A的代理先 代理设置模式的标准4步 1,定义一份pro...
分类:移动开发   时间:2014-07-26 02:48:46    阅读次数:365
iOS面试题汇总
该贴集锦了我面试iOS开发工程师时的考题,纪念并分析下。 http://www.devdiv.com/forum.php?mod=viewthread&tid=208065...
分类:移动开发   时间:2014-07-26 02:47:16    阅读次数:176
android 图文一起 textview SpannableString和ImageSpan类的使用
今天讲解一下SpannableString和ImageSpan类 Bitmap bitmap = null; bitmap = BitmapFactory.decodeResource(getResources(), imageIds[arg2 % imageIds.length]); ImageSpan imageSpan = new ImageSpan(NeighborCommunica...
分类:移动开发   时间:2014-07-26 02:45:56    阅读次数:230
graph driver-device mapper-04libdevmapper基本操作
// 创建thin pool // 调用路径:NewDeviceSet->initDevmapper->createPool 1.1 func createPool(poolName string, dataFile, metadataFile *os.File, poolBlockSize uint32) error { //通过task封装与libdevmapper的交互 task, er...
分类:移动开发   时间:2014-07-26 02:45:06    阅读次数:297
Android 计算当前使用内存百分比的方法
一些手机管家软件可以显示当前系统内存使用了百分之多少,这个数字的得到是通过 取得总内存大小,减去可用内存大小,再与总大小做比值的结果,下面代码可以计算内存使用了多少。 /** * 计算已使用内存的百分比 * */ public static String getUsedPercentValue(Context context) { String dir = "/proc/mem...
分类:移动开发   时间:2014-07-26 02:44:26    阅读次数:311
hdu1298 T9(手机输入法,每按一个数字,找出出现频率最高的字串,字典树+DFS)
Problem Description A while ago it was quite cumbersome to create a message for the Short Message Service (SMS) on a mobile phone. This was because you only have nine keys and the alphabet has more t...
分类:移动开发   时间:2014-07-26 02:40:36    阅读次数:332
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!