首页 > 代码库 > Android - 格式化显示日期

Android - 格式化显示日期

格式化显示日期


本文地址: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 - 格式化显示日期