Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

set device time programmatically in android [duplicate]

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);

manifest.xml

<permission android:name="android.permission.SET_TIME"
    android:protectionLevel="signatureOrSystem"
    android:label="@string/app_name" />

Thanks in advance

like image 506
Android_coder Avatar asked Nov 01 '22 15:11

Android_coder


1 Answers

//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

like image 182
Spry Techies Avatar answered Nov 09 '22 15:11

Spry Techies