首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > Android >

android之IntentService种的实现

2012-10-14 
android之IntentService类的实现package com.ghg.MyIntentServiceimport android.app.Activityimport an

android之IntentService类的实现

package com.ghg.MyIntentService;import android.app.Activity;import android.content.Intent;import android.os.Bundle;public class Day1305_MyIntentServiceActivity extends Activity {    /** Called when the activity is first created. */    @Override    public void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.main);        Intent intent=new Intent(this, MyIntentService.class);        intent.putExtra("uri", "http://192.168.1.162:8080/musiconline/musics/001.mp3");        startService(intent);    }}


热点排行