我想做与以下链接中的问题中提到的完全相同的事情Call an activity method from a BroadcastReceiver class。但是给定的解决方案对我不起作用,我不能在那里发表评论,因为我没有足够的声誉。我做了解决方案中提到的所有事情,但我的广播接收器无法使用该代码。
我只想在接收广播请求时调用活动中的方法,而不创建活动的实例。可以做到吗?
编辑:现在我正在添加代码。
这是我的 MainActivity 类
public class MainActivity extends Activity {
public static final String TAG="App1";
private ActionReceiver receiver = null;
//private YourBroadcastReceiverClassName yourBR = null;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// receiver= new ActionReceiver();
//IntentFilter filter = new IntentFilter();
//filter.addAction("com.example.app1.printSomething");
// printSomething();
}
public void printSomething(){
Toast.makeText(this,"Hello World",Toast.LENGTH_LONG);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
}
这是我的 ActionReceiver 类,它是 BroadcastReceiver
public class ActionReceiver extends BroadcastReceiver{
@Override
public void onReceive(Context context, Intent intent) {
if("com.example.app1.printSomething".equalsIgnoreCase(intent.getAction()))
Toast.makeText(context,"Hello World", Toast.LENGTH_LONG).show();
}
}
这是我的
AndroidManifest.xml
文件:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.app1"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="7"
android:targetSdkVersion="16" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.app1.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=".ActionReceiver">
<intent-filter>
<action android:name="com.example.app1.printSomething"/>
</intent-filter>
</receiver>
</application>
</manifest>
现在,我想在 课堂上调用printSomething()
编写的方法MainActivity
。但我不想为此启动。可以做到吗?onReceive()
ActionReceiver
MainActivity