android 菜单不显示auto time zone菜单

packages\apps\Settings\res\xml\date_time_prefs.xml 

有对应的xml

packages\apps\Settings\src\com\android\settings\datetime\AutoTimeZonePreferenceController.java 

@Override
    public boolean isAvailable() {
        if (mIsFromSUW) {
            return false;
        }

        TimeZoneCapabilities timeZoneCapabilities =
                getTimeZoneCapabilitiesAndConfig().getCapabilities();
        int capability = timeZoneCapabilities.getConfigureAutoDetectionEnabledCapability();

        // The preference only has two states: present and not present. The preference is never
        // present but disabled.
        if (capability == CAPABILITY_NOT_SUPPORTED
                || capability == CAPABILITY_NOT_ALLOWED
                || capability == CAPABILITY_NOT_APPLICABLE) {
            return false;
        } else if (capability == CAPABILITY_POSSESSED) {
            return true;
        } else {
            throw new IllegalStateException("Unknown capability=" + capability);
        }
    }

打印 日志发现,capability == CAPABILITY_NOT_SUPPORTED

查看哪里设置了CAPABILITY_NOT_SUPPORTED

frameworks\base\services\core\java\com\android\server\timezonedetector\ConfigurationInternal.java

  /** Returns true if the device supports any form of auto time zone detection. */
    public boolean isAutoDetectionSupported() {
        return mTelephonyDetectionSupported || mGeoDetectionSupported;
    }

    /** Returns true if the device supports telephony time zone detection. */
    public boolean isTelephonyDetectionSupported() {
        return mTelephonyDetectionSupported;
    }

    /** Returns true if the device supports geolocation time zone detection. */
    public boolean isGeoDetectionSupported() {
        return mGeoDetectionSupported;
    }

在Java Web应用中,"the server time zone value"通常是指服务器配置中的时区设置。当应用程序需要进行时间相关的操作时,比如日志记录、用户操作时间戳等,服务器的时区设置会影响时间的计算和显示。 在一些Java Web容器或应用服务器(如Tomcat, Jetty等)中,可能会因为服务器的时区设置不正确而导致时间显示不正确。这时,可以在Java应用中指定正确的时区来确保时间处理的准确性。具体操作通常是在应用的配置文件中(如`web.xml`或者Spring的配置文件中)设置Java虚拟机(JVM)的系统属性`user.timezone`。 例如,在Spring Boot应用中,可以在`application.properties`或`application.yml`文件中添加以下配置: ``` spring.jackson.time-zone=GMT+8 ``` 或者在`web.xml`中添加: ``` <env-entry> <env-entry-name>user.timezone</env-entry-name> <env-entry-value>Asia/Shanghai</env-entry-value> <env-entry-type>java.util.TimeZone</env-entry-type> </env-entry> ``` 这样配置后,应用服务器就会使用指定的时区来处理时间数据。 另外,对于使用JDBC连接数据库的情况,有些数据库驱动会根据服务器的时区设置来处理时间数据,如果不希望依赖服务器时区设置,也可以在JDBC连接字符串中显式指定时区参数,例如: ``` jdbc:mysql://localhost:3306/dbname?useUnicode=true&characterEncoding=utf8&serverTimezone=GMT%2B8 ``` 这样可以确保从数据库获取的时间数据都是按照指定的时区处理的。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

xiaowang_lj

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值