我想编写一个位于“共享方式”菜单中的应用程序(用于快速向自己发送电子邮件链接到我在网络上找到的内容或在 RSS 阅读器中查看的内容)为此,我使用 intent.action.SEND 声明我的应用程序意图过滤器:
<activity
android:name="uk.co.baroquedub.checkit.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/plain" />
</intent-filter>
</activity>
这是 MainActivity 包的骨架
package uk.co.baroquedub.testcheck;
import android.app.Activity;
import android.os.AsyncTask;
import android.os.Bundle;
import android.widget.Toast;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// real code here grabs URL from intent then emails it as an asyncTask:
doSendTask task = new doSendTask();
task.execute(new String[] { "urlString" });
}
protected void showDialog (String response){
Toast.makeText(this, response, Toast.LENGTH_SHORT).show();
finish();
}
private class doSendTask extends AsyncTask<String, Void, String> {
@Override
protected String doInBackground(String... urls) {
String response = "";
// Real code here sends the email
// Simulate waiting for the email to be sent:
try {
Thread.sleep(5000);
response = "Waited";
}
catch (InterruptedException ex) { }
return response;
}
@Override
protected void onPostExecute(String result) {
showDialog(result);
}
}
}
问题是我的应用程序正在浏览器顶部打开(出现一个白色屏幕,标题栏显示应用程序的名称) - 这会阻止浏览器访问,直到“等待”完成(因此破坏了目的将我的 sendEmail 功能包装在 asyncTask 中)。
请参阅:问题演示的截屏视频
请参阅:完整代码的相关问题
谁能告诉我如何让我的应用程序启动(从“共享方式”菜单)并执行我的代码,但实际上没有“视图”(如果这是空白屏幕和标题栏的正确术语)?