如何在android上禁用日期时间设置?

前端之家收集整理的这篇文章主要介绍了如何在android上禁用日期时间设置?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我们有一个应用程序,它将记录用户触发事件时的正确日期和时间.
我们不希望用户将日期和时间更改为已过去的时间.
如何在 Android系统级别禁用日期和设置?

解决方法

即使你能找到一些黑客来做这件事,这也不是你想做的事情.更好的解决方案是侦听ACTION_TIMEZONE_CHANGED,ACTION_TIME_CHANGED和ACTION_DATE_CHANGED事件,然后相应地更改您之前的时间.这实际上非常容易,如果您需要帮助,我可以提供示例代码.

TimeChanged.java

package com.example.stackoverflow17462606;

import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;

public class TimeChanged extends BroadcastReceiver {
    public TimeChanged() {
    }

    @Override
    public void onReceive(Context context,Intent intent) {
        // Do whatever changes you need here
        // you can check the updated time using Calendar c = Calendar.getInstance();
    }
}

AndroidManifest.xml中

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.stackoverflow17462606"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="7"
        android:targetSdkVersion="17" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <receiver
            android:name="com.example.stackoverflow17462606.TimeChanged"
            android:enabled="true"
            android:exported="true" >
            <intent-filter>
                <action android:name="android.intent.action.TIMEZONE_CHANGED"/>
                <action android:name="android.intent.action.TIME_SET"/>
                <action android:name="android.intent.action.DATE_CHANGED"/>
            </intent-filter>
        </receiver>
    </application>

</manifest>

请记住,如果您在设备上启动了一次应用程序(仅防止应用程序在安装后自行运行),此操作才会触发

原文链接:https://www.f2er.com/android/309442.html

猜你在找的Android相关文章