gpt4 book ai didi

java - 需要使用 android studio 在复选框上应用时间调度程序

转载 作者:行者123 更新时间:2023-12-02 11:58:48 24 4
gpt4 key购买 nike

我是 Android 初学者,我制作了一个简单的应用程序,用于使用复选框来关闭和开启移动数据。现在我想添加1分钟的时间调度程序,这意味着移动数据每1分钟后自动关闭和打开。如何将此功能添加到我的项目中?

MainActivity 类-

public class MainActivity extends AppCompatActivity {
CheckBox mDataStatus;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mDataStatus = (CheckBox) findViewById(R.id.checkBox);
mDataStatus.setChecked(getMobileDataState());

mDataStatus.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton compoundButton, boolean checked) {
if (checked) {
try {
setMobileDataEnabled(true);
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (NoSuchFieldException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
e.printStackTrace();
} catch (NoSuchMethodException e) {
e.printStackTrace();
} catch (InvocationTargetException e) {
e.printStackTrace();
}
}
else
{
try {
setMobileDataEnabled(false);
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (NoSuchFieldException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
e.printStackTrace();
} catch (NoSuchMethodException e) {
e.printStackTrace();
} catch (InvocationTargetException e) {
e.printStackTrace();
}
}
}
});

}

private void setMobileDataEnabled(boolean enabled) throws ClassNotFoundException, NoSuchFieldException, IllegalAccessException, NoSuchMethodException, InvocationTargetException {
final ConnectivityManager conman = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE);
final Class conmanClass = Class.forName(conman.getClass().getName());
final Field connectivityManagerField = conmanClass.getDeclaredField("mService");
connectivityManagerField.setAccessible(true);
final Object connectivityManager = connectivityManagerField.get(conman);
final Class connectivityManagerClass = Class.forName(connectivityManager.getClass().getName());
final Method setMobileDataEnabledMethod = connectivityManagerClass.getDeclaredMethod("setMobileDataEnabled", Boolean.TYPE);
setMobileDataEnabledMethod.setAccessible(true);
setMobileDataEnabledMethod.invoke(connectivityManager, enabled);}

public boolean getMobileDataState() {
try {
TelephonyManager telephonyService = (TelephonyManager) getSystemService(TELEPHONY_SERVICE);
Method getMobileDataEnabledMethod = telephonyService.getClass().getDeclaredMethod("getDataEnabled");
if (null != getMobileDataEnabledMethod) {
boolean mobileDataEnabled = (Boolean) getMobileDataEnabledMethod.invoke(telephonyService);
return mobileDataEnabled;
}
} catch (Exception ex) {
Log.e("error", "Error getting mobile data state", ex);
}
return false;
}

}

Activity_main.xml-

 <?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.android.mobiledataoffon.MainActivity">


<CheckBox
android:id="@+id/checkBox"
android:layout_width="119dp"
android:layout_height="40dp"
android:text="CheckBox"
tools:layout_editor_absoluteX="77dp"
tools:layout_editor_absoluteY="64dp" />
</android.support.constraint.ConstraintLayout>

AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.mobiledataoffon">
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE"/>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

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

</manifest>

最佳答案

有很多方法可以每隔 X 秒调用一次计时器,然后在每次计时器完成时运行一段代码。

各有利弊

一个选项是打开一个在主线程(大多数用户界面运行的线程)上运行的计时器任务

这是一个例子:

https://www.journaldev.com/1050/java-timer-timertask-example

更好的选择是使用警报管理器,下面是一个示例:

https://developer.android.com/training/scheduling/alarms.html

大多数时候你可以只使用倒计时器,这里有一个例子:

https://developer.android.com/reference/android/os/CountDownTimer.html

您甚至可以打开在后台检查间隔运行的进程,再次分配选项。

从我为您带来的内容开始,如果您需要更多选项,只需更好地指定问题并阅读有关此事的一些内容即可。

首先请注意,当屏幕不在前面时,您需要处理计时器,并尽量不要在主线程上运行它。

关于java - 需要使用 android studio 在复选框上应用时间调度程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47407214/

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