- 博客(10)
- 收藏
- 关注
转载 custom Keyboard
http://www.fampennings.nl/maarten/android/09keyboard/index.htmCustom keyboardDownload thesourceof this article.1. IntroductionWhen using an application, we have to fill out alpha n...
2013-05-11 12:31:00
583
转载 tag的管理命令
git fetch --tags //下载github上的tags到本地git tag -a v1.0 -m 'my version 1.0 //创建一个taggit push origin --tags //要将在本地创建的tag提交到github上git tag -f v1.0 //覆盖掉v1.0的taggit tag -d v1.0 //删除本地的taggit push ...
2013-04-22 11:14:00
155
转载 蓝牙自动配对 4.2.2
这几天一直都在研究Android手机上蓝牙的自动配对与连接。整理一下思路,整体的流程是:1. 首先注册蓝牙的广播消息 /** * 蓝牙的隐藏action,主要是配对时弹出配对对话框时会响应该消息 */ protected static final String sPairingName = "android.bluetooth.de...
2013-04-20 12:21:00
212
转载 16进制转ASCII字符串
byte[] bytes = new byte[] { 0x43, 0x68, 0x65, 0x6e, 0, 0, 0, 0, 0, 0 }; // ChenString str = EncodingUtils.getAsciiString(bytes);转载于:https://www.cnblogs.com/demon-heart/archive/2013/04/1...
2013-04-19 01:41:00
143
转载 更新RTX组织架构
无法更新Mac RTX的组织架构,如在RTX“研发部”下一直看不到“曹宪辉”。可以尝试这样解决问题:a. 先删除老的数据,不然会出现无法拉取组织架构的问题 —— 这一步很重要打开终端,输入 sudo rm -rf '/Users/chencheng/Library/Application Support/RTXC' —— 把其中的chencheng换成你的Mac用户名然...
2013-04-16 11:05:00
316
转载 Dialog相关
去掉title方法1:Dialog d = new Dialog(context);d.requestWindowFeature(Window.FEATURE_NO_TITLE);方法2:定义style<style name="TANCStyle" parent="@android:style/Theme.Dialog"> <!-- 更...
2013-04-15 18:30:00
104
转载 SeekBar使用心得
因为项目原因需要设置SeekBar的范围为-1001~1001, 结果悲剧的发现只能设置正数。没办法只好另想法子解决。转载于:https://www.cnblogs.com/demon-heart/archive/2013/03/27/2985312.html...
2013-03-27 20:47:00
100
转载 判断对象类型
1 void checkforTextView(View v)2 {3 if(v instanceof TextView)4 {5 // This is a TextView control6 } else {7 // This is not a TextView control8 }9 ...
2013-03-27 15:33:00
73
转载 Frame类型动画使用步骤
Frame动画是一系列图片按照一定的顺序展示的过程,和放电影的机制很相似,我们称为逐帧动画。Frame动画可以被定义在XML文件中,也可以完全编码实现。以目前的项目为例子,我需要制作一个可以在接收到网络数据时闪烁一下的LED控件,主要采用xml形式实现,因为个人原因比较喜欢可重用的东西。在下图的蓝色选项处点击鼠标右键,选择Android XML File弹出资源对话...
2013-03-26 16:30:00
322
转载 Android 自动化测试入门学习
http://blog.youkuaiyun.com/column/details/mapdigittesting.html基础专栏转载于:https://www.cnblogs.com/demon-heart/articles/2982595.html
2013-03-26 15:14:00
90
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人