diff options
| -rw-r--r-- | res/layout/dialpad_view.xml | 11 |
1 files changed, 6 insertions, 5 deletions
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> |
