Home | History | Annotate | Download | only in com.example.android.wearable.elizachat

Lines Matching refs:intent

22 import android.content.Intent;
53 public void onReceive(Context context, Intent intent) {
54 processMessage(intent);
62 Intent serviceIntent = new Intent(this, ResponderService.class);
82 private void processMessage(Intent intent) {
83 String text = intent.getStringExtra(EXTRA_MESSAGE);
100 stopService(new Intent(this, ResponderService.class));