[共有]メニューにあるアプリを作成したい(ウェブ上で見つけたものへのリンクをすばやくメールで送信したり、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内にラップする方法)。
問題のデモについては、スクリーンキャストを参照してください。
([共有]メニューから)アプリを起動してコードを実行する方法を教えてもらえますか?実際には[表示]がありません(空白の画面とタイトルバーの正しい用語である場合)。