gpt4 book ai didi

android - 我想从 GSM 网络获取时间

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:03:43 25 4
gpt4 key购买 nike

我正在使用此代码,但它通过 wifi 提供时间..当我关闭 wifi 时,它没有给我时间...我想从我的 GSM 服务提供商处获取时间...我正在使用的代码..

LocationManager locMan = (LocationManager) arg0.getSystemService(Context.LOCATION_SERVICE);
long networkTS = locMan.getLastKnownLocation(LocationManager.NETWORK_PROVIDER).getTime();
Toast.makeText(arg0,""+networkTS,Toast.LENGTH_LONG ).show();
Date date = new Date(networkTS);
SimpleDateFormat format = new SimpleDateFormat("dd/MM/yyyy HH:mm:ss");
format.setTimeZone(TimeZone.getTimeZone("GMT+5:30"));
String formatted = format.format(date);
Toast.makeText(arg0,""+formatted,Toast.LENGTH_LONG ).show();

Mainifest 是,

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.block_time"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="17" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />

<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.block_time.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

<receiver android:name=".Tim">
<intent-filter>
<action android:name="android.intent.action.TIME_SET" />
</intent-filter>
</receiver>

</application>

</manifest>

最佳答案

 long networkTS = locMan.getLastKnownLocation(LocationManager.NETWORK_PROVIDER).getTime();

如果您想使用当前时间,getLastKnowLocation 返回的时间可能是旧的

locMan.requestSingleUpdate() 并传递网络提供商

关于android - 我想从 GSM 网络获取时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16052222/

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