[Solved] Convert only time part in android from string to time


Something like this

        DateFormat sdf = new SimpleDateFormat("hh:mm");
        Date date = sdf.parse(time);            

2

solved Convert only time part in android from string to time