Как создать виджет для запуска и остановки записи голоса - PullRequest
1 голос
/ 24 июня 2011

В моем проекте я создал класс виджетов, сервис и удаленный сервис, однако я не могу вызовите методы для запуска или остановки. У меня есть примеры кодов здесь

Для виджета

            Intent intent = new Intent(context, med_service.class);

            PendingIntent pi = PendingIntent.getActivity(context, 0, intent, 0);
            Toast.makeText(context, pi.toString() + intent.toString(), Toast.LENGTH_SHORT).show();

            views.setOnClickPendingIntent(R.id.button1, pi);
            Toast.makeText(context, pi.toString() + intent.toString(), Toast.LENGTH_SHORT).show();

для удаленного обслуживания

public class service extends Service implements IBinder{

public IBinder onBind(Intent intent) {
    Log.i("RemoteService", "onBind() called");
    return new RemoteServiceImpl();
  }
  /**
   * The IRemoteInterface is defined through IDL
   */


  public class RemoteServiceImpl extends IRemoteService.Stub {

    @Override
    public void start() throws RemoteException {
        // TODO Auto-generated method stub

        Toast.makeText(getApplicationContext(), "inside start method", Toast.LENGTH_SHORT).show();

    }

    @Override
    public void stop() throws RemoteException {
        // TODO Auto-generated method stub
        Toast.makeText(getApplicationContext(), "inside stop method", Toast.LENGTH_SHORT).show();

    }
  }

за услугу

public class med_service extends Service{

IRemoteService mService;

@Override
public IBinder onBind(Intent intent) {
    // TODO Auto-generated method stub
    Log.i("RemoteService", "onBind() called");
    Toast.makeText(getApplicationContext(), "service not bind to connection", Toast.LENGTH_SHORT).show();

    return new service();


}

class RemoteServiceConnection implements ServiceConnection {

    public void onServiceConnected(ComponentName className, IBinder service ) {
                mService = IRemoteService.Stub.asInterface(service);
            }
            public void onServiceDisconnected(ComponentName className) {
                mService = null;
            }
    };

@Override
public int onStartCommand(Intent intent, int flags, int startId)
{

    try{

            RemoteServiceConnection mConnection = new RemoteServiceConnection();
            getApplicationContext().bindService(new Intent(IRemoteService.class.getName()), mConnection, Context.BIND_AUTO_CREATE);

        }
    catch(Exception e)
        {
            Toast.makeText(getApplicationContext(), "service not bind to connection", Toast.LENGTH_SHORT).show();
        }

        try {
            mService.start();
        } catch (RemoteException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        return 1;
}

приветствуется любая помощь

Заранее спасибо

1 Ответ

0 голосов
/ 18 октября 2011

используйте getService вместо getActivity

...