gpt4 book ai didi

安卓 : how to set time Range

转载 作者:行者123 更新时间:2023-11-30 03:07:45 26 4
gpt4 key购买 nike

问题是如何在您的应用程序中为它设置任何代码的时间范围.. 示例就像从晚上 9 点到凌晨 3 点的 sleep 时间.. 可以为用户提供具有多个时间范围的选项。

最佳答案

欢迎来到堆栈溢出 :)。

您的应用要求似乎节省了多个时间范围。您可以为每个时间间隔设置 startTime 和 endTime 2 值。

您可以使用共享首选项来保存这些值。

要获得共享偏好,请在您的 Activity 中使用以下方法:

SharedPreferences prefs = this.getSharedPreferences(
"com.example.yourapp", Context.MODE_PRIVATE);

阅读偏好:
String dateTimeKey = "com.example.yourapp.datetime";

// use a default value using new Date()
long l = prefs.getLong(dateTimeKey, new Date().getTime());

编辑和保存首选项
Date dt = getSomeDate();
prefs.edit().putLong(dateTimeKey, dt.getTime()).commit();

android sdk 的示例目录包含一个检索和存储共享首选项的示例。它位于:

/samples/android-/ApiDemos 目录

此外,您可以使用 SQLite 在 DB 中保存时间范围。您可以将日期存储为 INTEGER 类型,

关于安卓 : how to set time Range,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21514236/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com