第9回

閲覧: 176 回
最初の未読メッセージにスキップ

kabayan

未読、
2009/09/15 21:24:272009/09/15
To: shibuyandoroid
atndにあげました。今回はintentです。

http://bit.ly/R8M3S

よろしくお願いします。

kabayan

kabayan

未読、
2009/09/17 6:32:072009/09/17
To: shibuyandoroid
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);

Button bt = (Button) findViewById(R.id.Button01);
bt.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
// ここで呼ぶ
Intent i = new Intent(Test9.this, Test9Sub.class);
i.setAction(Intent.ACTION_VIEW);
startActivity(i);

}
});

kabayan

未読、
2009/09/17 6:48:332009/09/17
To: shibuyandoroid
public void onClick(View v) {
// ここで呼ぶ
Intent i = new Intent(Test9.this, Test9Sub.class);
i.setAction(Intent.ACTION_VIEW);
i.putExtra("msg", "渡った");
startActivity(i);

}


Bundle extras = getIntent().getExtras();

String msg = extras.getString("msg");

TextView tv = (TextView)findViewById(R.id.tSub);
tv.setText(msg);


On 9月16日, 午前10:24, kabayan <tkab...@gmail.com> wrote:

kabayan

未読、
2009/09/17 7:47:092009/09/17
To: shibuyandoroid
@Override
protected void onActivityResult(int requestCode, int resultCode,
Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (data != null) {
Bundle extras = data.getExtras();
if (extras != null) {
if (resultCode == RESULT_OK) {
switch (requestCode) {
case RECORDING_VOICE:
mediaPath = extras.getString("mediaPath");
:
break;
}
:

kabayan

未読、
2009/09/17 7:47:452009/09/17
To: shibuyandoroid
Intent i = new Intent(TweeTalky.this,
RecordingVoice.class);
i.setAction(Intent.ACTION_VIEW);
startActivityForResult(i, RECORDING_VOICE);


On 9月17日, 午後7:48, kabayan <tkab...@gmail.com> wrote:

kabayan

未読、
2009/09/17 7:50:142009/09/17
To: shibuyandoroid
bundle.putString(Constant.ADDLOCATION, mAddLocation);
mIntent.putExtras(bundle);
setResult(RESULT_OK, mIntent);

On 9月17日, 午後7:48, kabayan <tkab...@gmail.com> wrote:

kabayan

未読、
2009/09/17 8:41:452009/09/17
To: shibuyandoroid
* http://developer.android.com/reference/android/content/Intent.html
* http://d.hatena.ne.jp/minghai/20090316/p1


http://blog.haw.co.jp/android/?p=54
http://d.hatena.ne.jp/minghai/20090316/p1
http://developer.android.com/guide/topics/intents/intents-filters.html


http://www.grandnature.net/blog/archives/2009/02/android_developers_blog_can_i.html
http://code.google.com/p/openintents/
http://www.openintents.org/

ブラウザ
1. Uri uri = Uri.parse("http://google.com");
2. Intent it = new Intent(Intent.ACTION_VIEW, uri);
3. startActivity(it);

MAPアプリ
1. Uri uri = Uri.parse("geo:38.899533,-77.036476");
2. Intent it = new Intent(Intent.ACTION_VIEW, uri);
3. startActivity(it);
5. //geo:latitude,longitude
6. //geo:latitude,longitude?z=zoom
7. //geo:0,0?q=my+street+address
8. //geo:0,0?q=business+near+city
9. //
google.streetview:cbll=lat,lng&cbp=1,yaw,,pitch,zoom&mz=mapZoom

ブラウザのマップ

1. Uri uri = Uri.parse("http://maps.google.com/maps?
f=d&saddr=startLat%20startLng&daddr=endLat%20endLng&hl=en");
2. Intent it = new Intent(Intent.ACTION_VIEW, uri);
3. startActivity(it);
4. //where startLat, startLng, endLat, endLng are a long with 6
decimals like: 50.123456


電話
2. Uri uri = Uri.parse("tel:0800000123");
3. Intent it = new Intent(Intent.ACTION_DIAL, uri);
4. startActivity(it);
<uses-permission id="android.permission.CALL_PHONE" />

SMS
2. Intent it = new Intent(Intent.ACTION_VIEW, uri);
3. it.putExtra("sms_body", "The SMS text");
4. it.setType("vnd.android-dir/mms-sms");
5. startActivity(it);

宛先を指定してSMS
2. Uri uri = Uri.parse("smsto://0800000123");
3. Intent it = new Intent(Intent.ACTION_SENDTO, uri);
4. it.putExtra("sms_body", "The SMS text");
5. startActivity(it);

宛先を指定して MMS
2. Uri uri = Uri.parse("content://media/external/images/media/
23");
3. Intent it = new Intent(Intent.ACTION_SEND);
4. it.putExtra("sms_body", "some text");
5. it.putExtra(Intent.EXTRA_STREAM, uri);
6. it.setType("image/png");
7. startActivity(it);

Emailいろいろ
1. Uri uri = Uri.parse("mailto:x...@abc.com");
2. Intent it = new Intent(Intent.ACTION_SENDTO, uri);
3. startActivity(it);

1. Intent it = new Intent(Intent.ACTION_SEND);
2. it.putExtra(Intent.EXTRA_EMAIL, "m...@abc.com");
3. it.putExtra(Intent.EXTRA_TEXT, "The email body text");
4. it.setType("text/plain");
5. startActivity(Intent.createChooser(it, "Choose Email
Client"));

1. Intent it=new Intent(Intent.ACTION_SEND);
2. String[] tos={"m...@abc.com"};
3. String[] ccs={"y...@abc.com"};
4. it.putExtra(Intent.EXTRA_EMAIL, tos);
5. it.putExtra(Intent.EXTRA_CC, ccs);
6. it.putExtra(Intent.EXTRA_TEXT, "The email body text");
7. it.putExtra(Intent.EXTRA_SUBJECT, "The email subject text");
8. it.setType("message/rfc822");
9. startActivity(Intent.createChooser(it, "Choose Email Client"));

ファイルを添付
2. Intent it = new Intent(Intent.ACTION_SEND);
3. it.putExtra(Intent.EXTRA_SUBJECT, "The email subject text");
4. it.putExtra(Intent.EXTRA_STREAM, "file:///sdcard/mysong.mp3");
5. sendIntent.setType("audio/mp3");
6. startActivity(Intent.createChooser(it, "Choose Email Client"));

再生
Uri uri = Uri.parse("file:///sdcard/song.mp3");
Intent it = new Intent(Intent.ACTION_VIEW, uri);
it.setType("audio/mp3");
startActivity(it);

Uri uri = Uri.withAppendedPath
(MediaStore.Audio.Media.INTERNAL_CONTENT_URI, "1");
Intent it = new Intent(Intent.ACTION_VIEW, uri);
startActivity(it);



Marketを開く
2. Uri uri = Uri.parse("market://search?q=pname:pkg_name");
3. Intent it = new Intent(Intent.ACTION_VIEW, uri);
4. startActivity(it);
5. //where pkg_name is the full package path for an
application

2. Uri uri = Uri.parse("market://details?id=app_id");
3. Intent it = new Intent(Intent.ACTION_VIEW, uri);
4. startActivity(it);
5. //where app_id is the application ID, find the ID
6. //by clicking on your application on Market home
7. //page, and notice the ID from the address bar

アンインストール
1. Uri uri = Uri.fromParts("package", strPackageName, null);
2. Intent it = new Intent(Intent.ACTION_DELETE, uri);
3. startActivity(it);

Youつべ
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("http://
www.youtube.com/watch?v=cxLG2wtE7TM")));

Picasa
intent temp = new Intent(Intent.ACTION_SEND);
temp.setType("image/jpeg");
temp.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
temp.putExtra(Intent.EXTRA_STREAM, imageURI);
temp.setComponent(new ComponentName(
"com.google.android.apps.uploader",
"com.google.android.apps.uploader.picasa.PicasaUploadActivity"));
startActivityForResult(temp, 0);
since i did this long time ago, i sont remember the exact permissions
required...
<uses-permission
android:name="android.permission.GET_ACCOUNTS"></uses-permission>
<uses-permission
android:name="com.google.android.googleapps.permission.GOOGLE_AUTH"></
uses- permission>
but its either both or one of the above....

On 9月17日, 午後7:48, kabayan <tkab...@gmail.com> wrote:

kabayan

未読、
2009/09/17 9:14:162009/09/17
To: shibuyandoroid
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/*" />
<data android:mimeType="image/jpeg" />
<data android:mimeType="video/*" />
</intent-filter>

On 9月17日, 午後7:48, kabayan <tkab...@gmail.com> wrote:

kabayan

未読、
2009/09/17 9:25:172009/09/17
To: shibuyandoroid
message = extras
.getString(android.content.Intent.EXTRA_TEXT);

On 9月17日, 午後7:48, kabayan <tkab...@gmail.com> wrote:

kabayan

未読、
2009/09/17 9:47:172009/09/17
To: shibuyandoroid
インテントの一覧サイト

http://www.openintents.org/en/

kabayan

未読、
2009/09/17 9:54:402009/09/17
To: shibuyandoroid
intent.setType("text/*");

On 9月17日, 午後10:25, kabayan <tkab...@gmail.com> wrote:
全員に返信
投稿者に返信
転送
新着メール 0 件