Index: blimp/client/app/android/java/res/layout/debug_stats_overlay.xml |
diff --git a/blimp/client/app/android/java/res/layout/debug_stats_overlay.xml b/blimp/client/app/android/java/res/layout/debug_stats_overlay.xml |
new file mode 100644 |
index 0000000000000000000000000000000000000000..af2b07aeef4608c7d41233adf9beb5455357c630 |
--- /dev/null |
+++ b/blimp/client/app/android/java/res/layout/debug_stats_overlay.xml |
@@ -0,0 +1,21 @@ |
+<?xml version="1.0" encoding="utf-8"?> |
+<!-- Copyright 2015 The Chromium Authors. All rights reserved. |
+ Use of this source code is governed by a BSD-style license that can be |
+ found in the LICENSE file. --> |
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
+ android:id="@+id/debug_stats" |
+ android:layout_width="wrap_content" |
+ android:layout_height="wrap_content" |
+ android:background="@android:color/darker_gray" |
+ android:orientation="vertical"> |
+ <TextView |
+ android:id="@+id/bytes_received_client" |
+ android:layout_width="wrap_content" |
+ android:layout_height="wrap_content" |
+ android:padding="10dp"/> |
+ <TextView |
+ android:id="@+id/bytes_sent_client" |
+ android:layout_width="wrap_content" |
+ android:layout_height="wrap_content" |
+ android:padding="10dp"/> |
+</LinearLayout> |