No, you can't do this in a simple way since the activation function is applied right after getting the output of convolution in the implementation of convolution layer in Keras:
if self.rank == 2:
outputs = K.conv2d(
inputs,
self.kernel,
strides=self.strides,
padding=self.padding,
data_format=self.data_format,
dilation_rate=self.dilation_rate)
if self.activation is not None:
return self.activation(outputs)
return outputs
Though, you might be able to write a custom code to perform convolution and define a custom function to get the raw outputs of convolution. Another option is to write your own convolution layer (don't worry, it is so easy to do this!) which has two outputs: the result of applying convolution and also the result of applying activation function.