mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-20 20:23:03 +02:00
fix datetime format (android)
This commit is contained in:
parent
952c740c73
commit
455ead7b4a
@ -153,6 +153,15 @@ public class NativeMethods
|
||||
}
|
||||
}
|
||||
|
||||
@SuppressWarnings(Const.JNI_METHOD_SUPPRESS)
|
||||
public static String getFormattedDateTime()
|
||||
{
|
||||
String currentDate = new SimpleDateFormat((new SimpleDateFormat()).toLocalizedPattern(), Locale.getDefault()).format(new Date());
|
||||
String currentTime = new SimpleDateFormat("HH:mm:ss", Locale.getDefault()).format(new Date());
|
||||
|
||||
return currentDate + " " + currentTime;
|
||||
}
|
||||
|
||||
private static void internalProgressDisplay(final boolean show)
|
||||
{
|
||||
final Context ctx = SDL.getContext();
|
||||
|
@ -1,6 +1,10 @@
|
||||
#include "StdInc.h"
|
||||
#include <vstd/DateUtils.h>
|
||||
|
||||
#if defined(VCMI_ANDROID)
|
||||
#include "../CAndroidVMHelper.h"
|
||||
#endif
|
||||
|
||||
VCMI_LIB_NAMESPACE_BEGIN
|
||||
|
||||
namespace vstd
|
||||
@ -8,6 +12,11 @@ namespace vstd
|
||||
|
||||
DLL_LINKAGE std::string getFormattedDateTime(std::time_t dt)
|
||||
{
|
||||
#if defined(VCMI_ANDROID)
|
||||
CAndroidVMHelper vmHelper;
|
||||
return vmHelper.callStaticStringMethod(CAndroidVMHelper::NATIVE_METHODS_DEFAULT_CLASS, "getFormattedDateTime");
|
||||
#endif
|
||||
|
||||
std::tm tm = *std::localtime(&dt);
|
||||
std::stringstream s;
|
||||
try
|
||||
|
Loading…
Reference in New Issue
Block a user