You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 8, 2021. It is now read-only.
یکی از مشکلات اینه که اگه کاربر تاریخ دستگاهش رو عوض کنه تاریخ تقویم عوض میشه میخوام وقتی از سرور خودم تاریخ رو برای گوشی ارسال می کنم بتونم تاریخ تقویم رو تبدیل به تاریخ دریافتی کنم تا کاربر نتونه با تغییر دادن تاریخ سیستم ، کاربری اپ من رو دور بزنه
The text was updated successfully, but these errors were encountered:
سلام من هم چنین مشکلی رو داشتم
شما در ابتدا متد زیر در کلاس CivilDate رو به صورت زیر تغییر بدین:
public CivilDate() {
this.mYear = [read Year filed from the table of sqlite database];//2018
this.mMonth = [read Month filed from the table of sqlite database];//12
this.mDay = [read Day filed from the table of sqlite database];//5
}
سپس در کلاس PersianCalendarHandler متد زیر را تغییر دهید:
public PersianDate getToday() {
return DateConverter.civilToPersian(new CivilDate());
}
به این صورت تقویم بر اساس اعدادی که شما جایگذاری کردید شروع به کار میکنه
کافیه در ابتدا در بخش splash داده های تاریخ از سمت سرور رو ذخیره کنید و در کروشه های بالا جایگذاری کنید
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
یکی از مشکلات اینه که اگه کاربر تاریخ دستگاهش رو عوض کنه تاریخ تقویم عوض میشه میخوام وقتی از سرور خودم تاریخ رو برای گوشی ارسال می کنم بتونم تاریخ تقویم رو تبدیل به تاریخ دریافتی کنم تا کاربر نتونه با تغییر دادن تاریخ سیستم ، کاربری اپ من رو دور بزنه
The text was updated successfully, but these errors were encountered: