Skip to content Skip to sidebar Skip to footer

Set Device Time Programmatically In Android

I need to set device time dynamically.if it possible please guide me So far as I tried MainActivity.java Calendar c = Calendar.getInstance(); c.set(2010, 1, 1, 12, 00, 00); m

Solution 1:

//set Time to device
    Calendar c = Calendar.getInstance();
    c.set(2013, 8, 15, 12, 34, 56);
    AlarmManager am = (AlarmManager) this.getSystemService(Context.ALARM_SERVICE);
    am.setTime(c.getTimeInMillis());

//   and set in Manifest.xml
 <!-- Allows applications to set the system time -->
    <permission android:name="android.permission.SET_TIME"
        android:protectionLevel="signature|system"
      />

and follow this link for more help How to set mobile system time and date in android? I think it may help u


Post a Comment for "Set Device Time Programmatically In Android"