Fix recent card not updated on empty interaction history

When no interaction (calllog or event) is returned, QuickContact should
update UI also.

Bug: 32276191

Test: Manually verified recent card is cleared following repro steps.

Change-Id: I39d42383cee6cb5a2c12759aafdd0a0a4a17f5c2
diff --git a/src/com/android/contacts/quickcontact/QuickContactActivity.java b/src/com/android/contacts/quickcontact/QuickContactActivity.java
index f8d7436..a00bb2f 100644
--- a/src/com/android/contacts/quickcontact/QuickContactActivity.java
+++ b/src/com/android/contacts/quickcontact/QuickContactActivity.java
@@ -2450,6 +2450,8 @@
                                 ActionType.UNKNOWN_ACTION, /* thirdPartyAction */ null);
                     }
                     mRecentCard.setVisibility(View.VISIBLE);
+                } else {
+                    mRecentCard.setVisibility(View.GONE);
                 }
 
                 Trace.endSection();