Search This Blog

Friday, November 15, 2013

Android/IntelliJ - ADB display only debugging lines from logcat that DO NOT contain a phrase

Does not contain regexp

^((?!your_phrase).)*$


In the Android tab, go to: "Logcat" and create a new filter.
enter the above string in the
"by Log Message (regex):"
 field.



Android Java - Convert day year month hour minute second to miliseconds since epoch / convert to java.util.Date

public Date getDate()
{
    final Calendar cal = Calendar.getInstance();
    cal.set(2013, 12 - 1, 7, 17, 33, 01);
    long secondsSinceEpoch = cal.getTimeInMillis();
    Date date = new Date();
    date.setTime(secondsSinceEpoch);
    return date;
}