• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2
3<!-- Copyright 2014 The Chromium Authors. All rights reserved.
4     Use of this source code is governed by a BSD-style license that can be
5     found in the LICENSE file.
6-->
7
8<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
9        android:layout_height="match_parent"
10        android:layout_width="match_parent"
11        android:orientation="vertical">
12    <org.chromium.chromoting.DesktopView android:id="@+id/desktop_view"
13            android:layout_height="match_parent"
14            android:layout_width="match_parent"/>
15    <ImageButton android:id="@+id/desktop_overlay_button"
16            android:background="@android:color/transparent"
17            android:layout_gravity="top|end"
18            android:layout_height="wrap_content"
19            android:layout_width="wrap_content"
20            android:onClick="onOverlayButtonPressed"
21            android:src="@android:drawable/ic_menu_more"/>
22</FrameLayout>
23