码迷,mamicode.com
首页 > 移动开发 > 详细

Android - 格式化显示日期

时间:2014-10-17 09:43:34      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:android   style   blog   http   color   os   ar   使用   java   

格式化显示日期


本文地址:http://blog.csdn.net/caroline_wendy


Android,可以格式化设置地址,使用DateFormat类,具体可以查询英文文档。

其中,大写字母,表示英文,小写字母,表示数字,4个大写字母表示全称,3个大写字母表示简称。


代码:

            TextView dateTextView =
                    (TextView)convertView.findViewById(R.id.crime_list_item_dateTextView);
            DateFormat df = new DateFormat();
            dateTextView.setText(df.format("EEEE, MMM dd, yyyy", c.getDate()));


Android - 格式化显示日期

标签:android   style   blog   http   color   os   ar   使用   java   

原文地址:http://blog.csdn.net/caroline_wendy/article/details/40180235

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!