Use FrameLayout to properly include dialpad theme.
am: b373f1960f

* commit 'b373f1960f484e2cf83587260e0df66120377d3c':
  Use FrameLayout to properly include dialpad theme.
diff --git a/res/layout/dialpad_view.xml b/res/layout/dialpad_view.xml
index 416ae93..c6cb5f5 100644
--- a/res/layout/dialpad_view.xml
+++ b/res/layout/dialpad_view.xml
@@ -15,8 +15,9 @@
   ~ limitations under the License
   -->
 
-<merge xmlns:android="http://schemas.android.com/apk/res/android">
-    <include
-            layout="@layout/dialpad_view_unthemed"
-            android:theme="@style/Dialpad_Light" />
-</merge>
+<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
+    android:layout_width="match_parent"
+    android:layout_height="match_parent"
+    android:theme="@style/Dialpad_Light">
+    <include layout="@layout/dialpad_view_unthemed" />
+</FrameLayout>