You can have “actions,” so yes. For example, one of the actions of the Gmail application is that you can "Reply", "Reply all", etc., which will appear on your phone.
Android Wear, : //
Intent mapIntent = Intent (Intent.ACTION_VIEW);
Uri geoUri = Uri.parse( "geo: 0,0? Q =" + Uri.encode());
mapIntent.setData(geoUri);
PendingIntent mapPendingIntent = PendingIntent.getActivity(, 0, mapIntent, 0);
NotificationCompat.Builder notificationBuilder = NotificationCompat.Builder() .setSmallIcon(R.drawable.ic_event) .setContentTitle(EVENTTITLE) .setContentText(eventLocation) .setContentIntent(viewPendingIntent) .addAction(R.drawable.ic_map, getString (R.string.map), mapPendingIntent);
. http://developer.android.com/wear/notifications/creating.html. . " "