0

我已经制作了这项服务来播放声音,我可能与我创建的内容相差甚远,因为我正在遵循一个简单的教程,这甚至与我尝试做的事情都不接近。无论如何,我在我的主要活动中设置了当单击按钮时它应该启动此服务。该服务在构建中有错误,我无法运行它。在 onCreate(); 它在 SetContentView 和 FindViewById 行有错误。我想知道为什么会这样,如果这甚至是使用服务播放声音的正确方法,那么屏幕就不会超时。

import android.app.Service;
import android.content.Intent;
import android.media.MediaPlayer;
import android.os.Bundle;
import android.os.Handler;
import android.os.IBinder;
import android.os.PowerManager;
import android.util.Log;
import android.view.View;
import android.widget.ArrayAdapter;
import android.widget.Button;
import android.widget.Spinner;

public class Shipservice extends Service implements View.OnClickListener {
public static final Integer[] TIME_IN_MINUTES = { 30, 45, 60, 180, 360 };
public MediaPlayer mediaPlayer;
public Handler handler = new Handler();
public Button button2;
public Spinner spinner2;
public PowerManager.WakeLock wl;  
static final String TAG=Shipservice.class.getSimpleName();

@Override
public IBinder onBind(Intent intent) {
    return null;
    // TODO Auto-generated method stub

}

public void onCreate(Bundle savedInstanceState) {
PowerManager pm = (PowerManager) getSystemService(POWER_SERVICE);
 PowerManager.WakeLock wl = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, "wake");

    super.onCreate();
    wl.acquire();
    setContentView(R.layout.ship);
    button2 = (Button) findViewById(R.id.btn2);
    button2.setOnClickListener(this);
    spinner2 = (Spinner) findViewById(R.id.spinner2);
    ArrayAdapter<Integer> adapter = new ArrayAdapter<Integer>(this,
            android.R.layout.simple_spinner_item, TIME_IN_MINUTES);

adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
    spinner2.setAdapter(adapter);
    Log.d(TAG, "onCreate'd");
}
// Play the sound and start the timer
private void playSound(int resourceId) {
    // Cleanup any previous sound files
    cleanup();
    // Create a new media player instance and start it

    mediaPlayer = MediaPlayer.create(this, resourceId);
    mediaPlayer.start();
    // Create the timer to stop the sound after x number of milliseconds
    int selectedTime = TIME_IN_MINUTES[spinner2.getSelectedItemPosition()];
    handler.postDelayed(runnable, selectedTime * 60 * 1000);
}

// Handle button callback
@Override
public void onClick(View v) {
    switch (v.getId()) {
    case R.id.btn2:
        playSound(R.raw.ocean_ship);
        break;
    }
}

@Override
public void onDestroy() {
    // TODO Auto-generated method stub
    cleanup();
    super.onDestroy();
    Log.d(TAG, "onDestroy'd");
}

@Override
public void onStart(Intent intent, int startId) {
    // TODO Auto-generated method stub
    super.onStart(intent, startId);
    Log.d(TAG, "onStart'd");
}

public void cleanup() {
    if (mediaPlayer != null) {
        mediaPlayer.stop();
        mediaPlayer.release();
        mediaPlayer = null;

    }
    // Cancel any previously running tasks
    handler.removeCallbacks(runnable);
}

// Runnable task used by the handler to stop the sound
public Runnable runnable = new Runnable() {
    public void run() {
        cleanup();
    }
};


protected void onPause() {
    // TODO Auto-generated method stub
    super.onPause();
    wl.release();
}

}
4

1 回答 1

0

服务没有用户界面!创建一个 Activity 与用户交互并让它通过 startService(intent) 将请求转发给服务


针对评论中的问题:

创建一个从 IntentService 派生的新类。在该类中,实现 onHandleIntent(Intent intent) 方法。在 Manifest 文件中添加新服务的声明。

在您的应用程序中:当用户采取应导致播放声音的操作时:创建一个明确引用您的新服务的 Intent。向意图添加额外信息以告诉服务要做什么(您也可以为此使用意图的 Action 字段)调用 startService(intent) 方法将意图发送到服务。

哪些功能应该移到服务中,我会留给你。基本上任何花费超过几毫秒的东西都应该在服务中。

有很多可用的例子。谷歌类似 IntentService 播放声音来找到它们。

于 2013-10-15T22:02:35.297 回答