1<?xml version="1.0" encoding="utf-8"?> 2<merge xmlns:android="http://schemas.android.com/apk/res/android" 3 xmlns:app="http://schemas.android.com/apk/res-auto" 4 xmlns:tools="http://schemas.android.com/tools" 5 android:layout_width="match_parent" 6 android:layout_height="match_parent" 7 tools:context=".MainActivity"> 8 <View 9 android:id="@+id/background_touch_view" 10 android:layout_width="match_parent" 11 android:layout_height="match_parent" 12 /> 13 <SurfaceView 14 android:id="@+id/surface_view" 15 android:layout_width="match_parent" 16 android:layout_height="match_parent" 17 android:focusable="true" 18 android:focusableInTouchMode="true" 19 android:focusedByDefault="true" 20 android:defaultFocusHighlightEnabled="true"> 21 <requestFocus /> 22 </SurfaceView> 23 <!-- A cursor size in virtio-gpu spec is always 64x64 --> 24 <SurfaceView 25 android:id="@+id/cursor_surface_view" 26 android:layout_width="64px" 27 android:layout_height="64px"> 28 </SurfaceView> 29 30</merge> 31