Android Open Source - android_Findex Date Builder






From Project

Back to project page android_Findex.

License

The source code is released under:

Apache License

If you think the Android project android_Findex listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.lithidsw.findex.utils;
/*from w w w .  j  a va2  s . c  om*/
import android.content.Context;
import android.text.format.DateFormat;

import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Locale;

public class DateBuilder {

    public static String getFullDate(Context c, long date) {
        Date dateFromSms = new Date(date);
        Locale locale = Locale.getDefault();

        SimpleDateFormat day = new SimpleDateFormat("EEE", locale);
        String strDay = day.format(dateFromSms);

        SimpleDateFormat month = new SimpleDateFormat("MMM", locale);
        String strMonth = month.format(dateFromSms);

        SimpleDateFormat dayNum = new SimpleDateFormat("dd", locale);
        String strDayNum = dayNum.format(dateFromSms);

        SimpleDateFormat hour = new SimpleDateFormat("HH", locale);
        String strH = hour.format(dateFromSms);
        String strHour = String.valueOf(getHour(c, strH));

        SimpleDateFormat min = new SimpleDateFormat("mm", locale);
        String strMin = min.format(dateFromSms);
        return strDay + ", " + strMonth + strDayNum + " " + strHour + ":"
                + strMin + getAmPm(c, strH);
    }

    private static int getHour(Context c, String sdf) {
        int hour = Integer.parseInt(sdf);
        if (!DateFormat.is24HourFormat(c)) {
            if (hour > 12) {
                return hour - 12;
            } else if (hour == 0) {
                return 12;
            } else {
                return hour;
            }
        } else {
            return hour;
        }
    }

    private static String getAmPm(Context c, String sdf) {
        int hour = Integer.parseInt(sdf);
        if (!DateFormat.is24HourFormat(c)) {
            if (hour >= 12) {
                return "PM";
            } else {
                return "AM";
            }
        } else {
            return "";
        }
    }
}




Java Source Code List

com.lithidsw.findex.AddTagActivity.java
com.lithidsw.findex.FileInfoActivity.java
com.lithidsw.findex.IntroActivity.java
com.lithidsw.findex.IntroFragment.java
com.lithidsw.findex.MainActivity.java
com.lithidsw.findex.MainFragment.java
com.lithidsw.findex.SettingsActivity.java
com.lithidsw.findex.adapter.DrawerListAdapter.java
com.lithidsw.findex.adapter.FilePageAdapter.java
com.lithidsw.findex.adapter.InfoTagListAdapter.java
com.lithidsw.findex.adapter.StorageListAdapter.java
com.lithidsw.findex.adapter.WidgetListAdapter.java
com.lithidsw.findex.db.DBHelper.java
com.lithidsw.findex.db.DBUtils.java
com.lithidsw.findex.ef.DirectoryAdapter.java
com.lithidsw.findex.ef.DirectoryListActivity.java
com.lithidsw.findex.ef.DirectoryManager.java
com.lithidsw.findex.info.DirPickerInfo.java
com.lithidsw.findex.info.FileInfo.java
com.lithidsw.findex.loader.ImageLoader.java
com.lithidsw.findex.loader.MemoryCache.java
com.lithidsw.findex.receiver.ActionReceiver.java
com.lithidsw.findex.service.IndexService.java
com.lithidsw.findex.utils.C.java
com.lithidsw.findex.utils.DateBuilder.java
com.lithidsw.findex.utils.FileStartActivity.java
com.lithidsw.findex.utils.FileUtils.java
com.lithidsw.findex.utils.FileWalker.java
com.lithidsw.findex.utils.ItemCountLoader.java
com.lithidsw.findex.utils.MrToast.java
com.lithidsw.findex.utils.StorageOptions.java
com.lithidsw.findex.widget.WidgetConfigActivity.java
com.lithidsw.findex.widget.WidgetInfo.java
com.lithidsw.findex.widget.WidgetLoadStub.java
com.lithidsw.findex.widget.WidgetProvider.java
com.lithidsw.findex.widget.WidgetService.java
com.lithidsw.findex.widget.WidgetUtils.java
com.lithidsw.findex.widget.WidgetViews.java