上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 51 下一页
摘要: package cn.com.chenzheng_java;import android.app.Activity;import android.media.MediaPlayer;import android.os.Bundle;import android.util.Log;import android.widget.MediaController;import android.widget.VideoView;import android.widget.MediaController.MediaPlayerControl;public class VideoActivity extend 阅读全文
posted @ 2013-03-07 04:42 GreyWolf 阅读(1172) 评论(0) 推荐(0) 编辑
摘要: 首先是stackFromBottom属性,这只该属性之后你做好的列表就会显示你列表的最下面,值为true和falseandroid:stackFromBottom="true" 第二是 transciptMode属性,需要用ListView或者其它显示大量Items的控件实时跟踪或者查看信息,并且希望最新的条目可以自动滚动到可视范围内。通过设置的控件transcriptMode属性可以将Android平台的控件(支持ScrollBar)自动滑动到最底部。android:transcriptMode="alwaysScroll" 第三cacheColorH 阅读全文
posted @ 2013-03-07 00:47 GreyWolf 阅读(155) 评论(0) 推荐(0) 编辑
摘要: 第一篇private LinearLayout generateHeadOfControl() { LinearLayout LayoutHead = createLayout(LinearLayout.HORIZONTAL); Button DateButton = generateDateButton(); Button ItemButton = generateItemButton(); DateButton.setLayoutParams(new LinearLayout.LayoutParams(100, LinearLay... 阅读全文
posted @ 2013-03-07 00:37 GreyWolf 阅读(666) 评论(0) 推荐(0) 编辑
摘要: /** * 格式化微博来源小尾巴 * * @param sourceString * @return */ public static String formatWeiboSource(String sourceString) { ByteArrayInputStream bais = null; try { if (sourceString != null && !sourceString.trim().equals("")) { bais = new ByteAr... 阅读全文
posted @ 2013-03-06 10:50 GreyWolf 阅读(270) 评论(0) 推荐(0) 编辑
摘要: //解析新浪微博中的日期-(NSString*)resolveSinaWeiboDate:(NSString*)date{ NSDateFormatter *iosDateFormater=[[[NSDateFormatter alloc]init]autorelease]; iosDateFormater.dateFormat=@"EEE MMM d HH:mm:ss Z yyyy"; //必须设置,否则无法解析 iosDateFormater.locale=[[[NSLocale alloc]initWithLocaleIdentifier:@"en_US&q 阅读全文
posted @ 2013-03-05 20:04 GreyWolf 阅读(289) 评论(0) 推荐(0) 编辑
摘要: 1 /** 2 * 格式化微博时间 3 * 4 * @param string 5 * @return 6 * @throws ParseException 7 */ 8 public static String formatWeiboTime(String dateString) { 9 // 微博创建时间:Fri Mar 01 10:36:44 +0800 2013 EEE MMM dd HH:mm:ss zzz yyyy /10 // EEE MMM d HH:mm:ss Z yyyy... 阅读全文
posted @ 2013-03-05 20:02 GreyWolf 阅读(370) 评论(0) 推荐(0) 编辑
摘要: 现在的位置:首页>编程语言>Java> 正文RSS小中大下篇优雅的微博时间显示接口(Java实现)2012年11月05日⁄Java,M5原创,编程语言⁄ 共 4745字 ⁄暂无评论今天继续摆弄了一下 Weibo 开放平台,发现获取到的博文发表时间是时间戳,这个处理就不说了,今天要说的是,想跟官方微博显示一样的“刚刚”,“5秒前”,“25分钟前”,“2小时前”,“昨天”,“2天前”。展示出这样的时间显示方式给大家。先来看一下我效果预览图:其实处理时相当简单额,今天我就在这里为大家展示Java的实现方式。首先创建一个getFarmatTime方法,供后面时间处理的时候使用。/** 阅读全文
posted @ 2013-03-04 17:19 GreyWolf 阅读(649) 评论(0) 推荐(0) 编辑
摘要: // 判断软键盘显示状态,隐藏final View view = getWindow().peekDecorView();if (view != null && view.getWindowToken() != null) {InputMethodManager imm = (InputMethodManager) getSystemService(INPUT_METHOD_SERVICE);imm.hideSoftInputFromWindow(view.getWindowToken(), 0);}、、、、、、、、、、、、、、、、、、、、、、、、、、、imm.isActive 阅读全文
posted @ 2013-02-27 14:01 GreyWolf 阅读(139) 评论(0) 推荐(0) 编辑
摘要: // 判断软键盘显示状态,隐藏final View view = getWindow().peekDecorView();if (view != null && view.getWindowToken() != null) {InputMethodManager imm = (InputMethodManager) getSystemService(INPUT_METHOD_SERVICE);imm.hideSoftInputFromWindow(view.getWindowToken(), 0);}、、、、、、、、、、、、、、、、、、、、、、、、、、、imm.isActive 阅读全文
posted @ 2013-02-17 17:41 GreyWolf 阅读(203) 评论(0) 推荐(0) 编辑
摘要: ActivityGroup的子Activity获取焦点处理可以把ActivityGroup的bodyView(放置子Activity的布局)设置为可聚焦:android:focusable="true"android:focusableInTouchMode="true"然后再在OnCreate方法中bodyView.requestFocus();这就会进入这个ActivityGroup的每个子Activity时能够响应自己的OnKeyDown方法。我们可以禁用子Activity的OnKeyDown方法即返回falsepublic boolean onK 阅读全文
posted @ 2013-02-17 14:51 GreyWolf 阅读(309) 评论(0) 推荐(0) 编辑
上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 51 下一页