码迷,mamicode.com
首页 > 2015年01月13日 > 全部分享
android 软键盘弹出隐藏挤压界面等问题
Android中软键盘的使用是非常多的,下面为软键盘常用的设置; 1、横屏时,点击输入框出现全键盘解决方案: 在EditText、searchview等控件中加 android:imeOptions="flagNoExtractUi" 2、竖屏时,安卓会出现半屏。  case1:你的输入框处于中下的位置,这样的话,键盘可能挡住输入框。 解决方法:在manifest中对activ...
分类:移动开发   时间:2015-01-13 17:46:55    阅读次数:270
Android翻页效果原理实现之翻页的尝试
尊重原创转载请注明:From AigeStudio(http://blog.csdn.net/aigestudio)Power by Aige 侵权必究! 炮兵镇楼 在《自定义控件其实很简单》系列的前半部分中我们用了整整六节近两万字两百多张配图讲了Android图形的绘制,虽然篇幅很巨大但仍然只是图形绘制的冰山一角,旨在领大家入门,至于修行成果就看各位的了……那么这个些列主要是通过前面学习...
分类:移动开发   时间:2015-01-13 17:46:16    阅读次数:282
ural 1353. Milliard Vasya's Function
点击打开链接 1353. Milliard Vasya's Function Time limit: 1.0 second Memory limit: 64 MB Vasya is the beginning mathematician. He decided to make an important contribution to the science ...
分类:其他好文   时间:2015-01-13 17:46:33    阅读次数:150
div入门教程
一目了然的让你学会div和css的混合使用方法...
分类:其他好文   时间:2015-01-13 17:45:05    阅读次数:115
关于mmseg分词算法的资料总结
http://www.byywee.com/page/M0/S602/602088.html 关于mmseg的简介 https://pypi.python.org/pypi/mmseg/1.3.0 关于mmseg python源码下载 https://pypi.python.org/pypi/mmseg/1.3.0   关于mmseg python的简单实现...
分类:编程语言   时间:2015-01-13 17:46:34    阅读次数:174
ios 定位新功能----在程序中实现定位功能
Core Location是iOS SDK中一个提供设备位置的框架。可以使用三种技术来获取位置:GPS、蜂窝或WiFi。在这些技术中,GPS最为精准,如果有GPS硬件,Core Location将优先使用它。如果设备没有GPS硬件(如WiFi iPad)或使用GPS获取当前位置时失败,Core Location将退而求其次,选择使用蜂窝或WiFi。 Core Location的大多数功能是由...
分类:移动开发   时间:2015-01-13 17:45:55    阅读次数:323
解决安卓悬浮窗异常:java.lang.IllegalArgumentException: View not attached to window manager
解决安卓悬浮窗异常:java.lang.IllegalArgumentException 传说,女娲娘娘炼就七根火柴,来帮助人类度过第一个冬季,从此,七根火柴散落人间,不见踪迹... 本文章由亓根火柴原创,转载请注明出处:http://blog.csdn.net/qigenhuochai/article/details/42529077 在开发安卓悬浮...
分类:移动开发   时间:2015-01-13 17:45:40    阅读次数:919
LeetCode--Gray Code
The gray code is a binary numeral system where two successive values differ in only one bit. Given a non-negative integer n representing the total number of bits in the code, print the sequence of ...
分类:其他好文   时间:2015-01-13 17:45:19    阅读次数:140
js中的等号学问
JS等号学问...
分类:Web程序   时间:2015-01-13 17:46:41    阅读次数:162
R语言-画图(下)
在上一篇文章中,Mayuyu介绍了R中的一些常见的画图,本文就来详细介绍各种画图的用法。   1. 散点图          画图如下         由于平台的问题,中文显示不出来。      下面是用plot画折线,如下代码           画图结果         多条曲线的效果,代码如下          画图效果如下      ...
分类:编程语言   时间:2015-01-13 17:46:37    阅读次数:319
jQuery easyui combobox获取值(多个)
Combobox组件官方文档:   http://www.jeasyui.com/documentation/index.php# 配置示例 resources/json/KeyType.json', method:'get', valueField:'value', textField:'text', multiple:true, panelHeig...
分类:Web程序   时间:2015-01-13 17:45:26    阅读次数:207
MySQL COUNT 与 GROUP BY
group by 用来对结果进行分组,分组之后便于统计,所以总会有count跟着出现 例如下表: 按照ID分组,统计每个ID重复了几次 SELECT yww_test.id,COUNT(id) as n FROM yww_test GROUP BY yww_test.id 把重复的记录找出来可以像下面这样 SELECT id,COUNT(*) AS n FROM yww_...
分类:数据库   时间:2015-01-13 17:45:26    阅读次数:177
LeetCode题解 || Add Two Numbers 问题
problem: You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and return it...
分类:其他好文   时间:2015-01-13 17:45:37    阅读次数:136
Hadoop-2.4.1学习之InputFormat及源代码分析
本篇文章讲述了InputFormat及其子类,并结合源代码详细分析了FileInputFormat如何读取InputSplit及处理行跨越两个InputSplit的问题...
分类:其他好文   时间:2015-01-13 17:43:29    阅读次数:275
UIView动画
一、基础动画: (1)、Block方式: [UIView animateWithDuration:3.0 delay:0 options:UIViewAnimationOptionCurveLinear animations:^{ _imgView.center=location; } completion:^(BOOL finished) { ...
分类:其他好文   时间:2015-01-13 17:43:54    阅读次数:255
LeetCode--Subsets II
Given a collection of integers that might contain duplicates, S, return all possible subsets. Note: Elements in a subset must be in non-descending order.The solution set must not contain dupli...
分类:其他好文   时间:2015-01-13 17:45:51    阅读次数:139
Ant打包jar,参数名变为无意义的arg0,arg1,Java代码提示参数名称无意义
症状: 使用ant打包的jar,变量变成如下无意义的arg0,arg1. 代码提示也同样. 而使用Eclipse的导出jar就没有问题 解决方法: 让ant使用Eclipse的打包功能. 1.在build.xml的javac命令中增加 debug="true"    debuglevel="lines, vars, source"这两行属性 2.在build.xml的头部增加...
分类:编程语言   时间:2015-01-13 17:42:55    阅读次数:211
1863条   上一页 1 ... 38 39 40 41 42 43 44 ... 110 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!