Added TimeScreen

This commit is contained in:
2022-08-11 14:56:10 +08:00
parent 440fe444c5
commit 46f86b8cca
33 changed files with 631 additions and 158 deletions

View File

@@ -0,0 +1,12 @@
package com.fatapp.oxygentoolbox;
import android.text.format.DateFormat;
import org.junit.Test;
public class Tester {
@Test
public void dateFormat() {
System.out.println(DateFormat.format("HH:mm:ss dd MMM E", System.currentTimeMillis()));
}
}