我知道这里有很多这样的问题,但是在寻找可能的解决方案之后,我没有找到一个,所以这里的任何帮助表示赞赏。
我有 3 个类文件,我的 MainActivity 带有一个复选框,当按下该复选框时,它会启动一个具有广播接收器的活动,而我的广播接收器应该启动一个服务来检查用户的位置。
代码很大,所以我会尝试只显示主要部分,如果需要其他内容,请告诉我。
在 MainActivity 中:
Public void onCheckboxClicked (View view) {
boolean checked = ((CheckBox) view).isChecked();
Switch (view. getId ()) {
case R.id.checkbox_gps:
if (checked){
Intent intent = new Intent(this, GPS_Info.class);
startActivity(intent);
}
在 GPS_Info 活动中:
public class GPS_Info extends Activity{
private TextView latitude;
private TextView longitude;
@Override
protected void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_gps_info);
}
private BroadcastReceiver GpsReceiver = new BroadcastReceiver(){
@Override
public void onReceive(Context context, Intent intent){
System.out.println("Broadcast receiver");
intent.setAction("com.example.systeminfo.GpsTracker");
context.startService(intent);
}
};
我想我的问题是,我可以(如果是,那么如何)启动广播接收器内另一个类文件中的 GpsTracker 服务?我需要发送什么样的意图?我还没有完全掌握意图和上下文的概念。
这是我的 AndroidManifest.xml:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.systeminfo"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="11"
android:targetSdkVersion="17" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.INTERNET" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.systeminfo.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="com.example.systeminfo.GpsReceiver" >
<intent-filter>
<action android:name="com.example.systeminfo.LOCATION_READY" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</receiver>
<activity
android:name="com.example.systeminfo.GPS_Info"
android:label="@string/title_activity_gps__info"
android:parentActivityName="com.example.systeminfo.MainActivity" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="com.example.systeminfo.MainActivity" />
</activity>
<activity
android:name="com.example.systeminfo.BatteryStatus"
android:label="@string/title_activity_battery_status"
android:parentActivityName="com.example.systeminfo.MainActivity" >
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="com.example.systeminfo.MainActivity" />
</activity>
<activity
android:name="com.example.systeminfo.General_Info"
android:label="@string/title_activity_general__info"
android:launchMode="singleInstance"
android:parentActivityName="com.example.systeminfo.MainActivity" >
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="com.example.systeminfo.MainActivity" />
</activity>
<service
android:name=".GpsTracker"
android:enabled="false"
android:exported="false" >
</service>
</application>
</manifest>
我也知道我所描述的这个场景并不完全需要广播接收器,但它是项目的要求。