in android/src/main/java/bazel/bootcamp/AndroidLoggingClientActivity.java [85:94]
protected void onPostExecute(String result) {
Activity activity = activityReference.get();
if (activity == null) {
return;
}
TextView resultText = (TextView) activity.findViewById(R.id.grpc_response_text);
Button sendButton = (Button) activity.findViewById(R.id.send_button);
resultText.setText(result);
sendButton.setEnabled(true);
}