上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 21 下一页

2015年5月5日

摘要: case R.id.back:// 返回 ((InputMethodManager) getSystemService(INPUT_METHOD_SERVICE)) .hideSoftInputFromWindow(AccountActivity.this .getCurrentF... 阅读全文
posted @ 2015-05-05 09:38 飞奔的坦克 阅读(155) 评论(0) 推荐(0) 编辑
 

2015年5月3日

摘要: 在Android中不能直接打开res /raw目录中的数据库文件,而需要在程序第一次启动时将该文件复制到手机内存或SD卡的某个目录中,然后再打开该数据库文件。复制的基本方法是使用getResources().openRawResource方法获得res/raw目录中资源的 InputStream对象... 阅读全文
posted @ 2015-05-03 15:16 飞奔的坦克 阅读(2124) 评论(0) 推荐(0) 编辑
 

2015年5月1日

摘要: package com.anzi.jmsht.ui;import java.util.ArrayList;import java.util.HashMap;import java.util.Map;import java.util.concurrent.ExecutorService;import ... 阅读全文
posted @ 2015-05-01 16:50 飞奔的坦克 阅读(407) 评论(0) 推荐(0) 编辑
 
摘要: // 保存用户头像// jsonObject.getString("portrait");图片的地址 // 保存用户的头像地址 Constatpublic static Bitmap userIc = null;Constant.userIc = Net.getBitmap(jsonObject.g... 阅读全文
posted @ 2015-05-01 16:41 飞奔的坦克 阅读(231) 评论(0) 推荐(0) 编辑
 
摘要: // 创建一个定长线程池,可控制线程最大并发数,超出的线程会在队列中等待:private ExecutorService fixedThreadPool;// 创建一个定长线程池,可控制线程最大并发数,超出的线程会在队列中等待:fixedThreadPool = Executors.newFixed... 阅读全文
posted @ 2015-05-01 16:32 飞奔的坦克 阅读(1392) 评论(0) 推荐(0) 编辑
 

2015年4月30日

摘要: ImageView属性 android:scaleType="fitXY" ,拉伸图片非常好用 阅读全文
posted @ 2015-04-30 23:10 飞奔的坦克 阅读(699) 评论(0) 推荐(0) 编辑
 
摘要: //启动其他Activity之前Intent i = new Intent(CardNumberActivity.this, GetCodeActivity.class);i.putExtra("cardNum", cardNumber);i.putExtra("bankName", map.get... 阅读全文
posted @ 2015-04-30 16:30 飞奔的坦克 阅读(136) 评论(0) 推荐(0) 编辑
 
摘要: /** * 退出应用程序按两次退出键 */private void exitApp() {// TODO Auto-generated method stub// 判断2次点击事件时间if ((System.currentTimeMillis() - exitTime) > 2000) {Toast... 阅读全文
posted @ 2015-04-30 15:23 飞奔的坦克 阅读(159) 评论(0) 推荐(0) 编辑
 
摘要: 修炼-------------Android TabHost,TabWidget选项卡总结Android之TabHostTabHost,个人理解为选项卡的容器,是一种特殊的FrameLayout布局(帧布局)根据SDK文档,Container for a tabbed window view. Th... 阅读全文
posted @ 2015-04-30 15:14 飞奔的坦克 阅读(283) 评论(0) 推荐(0) 编辑
 
摘要: 要用到tab组件,布局layout中必须有TabHost文件,它有一个id,比如android:id="@+id/tabhost" 或者android:id="@android:id/tabhost"在TabHost中一般必须有TabWidget,这个主要是用来处理tab的位置、属性等。一般还有Fr... 阅读全文
posted @ 2015-04-30 14:32 飞奔的坦克 阅读(382) 评论(0) 推荐(0) 编辑
 
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 21 下一页