Skip to content

Instantly share code, notes, and snippets.

@pbrisbin
Created October 10, 2010 00:31
Show Gist options
  • Select an option

  • Save pbrisbin/618762 to your computer and use it in GitHub Desktop.

Select an option

Save pbrisbin/618762 to your computer and use it in GitHub Desktop.
public void onClick(View v) {
if (streamMusic != null) {
EditText t = (EditText)findViewById(R.id.entry);
String s = t.getText().toString();
// send play/pause command
streamMusic.playPause(this, s);
}
else {
Log.d(APP, "service not bound yet.");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment