Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(368)

Unified Diff: talk/examples/android/res/layout/activity_connect.xml

Issue 1235563006: Move talk/examples/* to webrtc/examples. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: 201508051337 Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: talk/examples/android/res/layout/activity_connect.xml
diff --git a/talk/examples/android/res/layout/activity_connect.xml b/talk/examples/android/res/layout/activity_connect.xml
deleted file mode 100644
index 5b807715883488aeacc63e45fea2ab1365c91841..0000000000000000000000000000000000000000
--- a/talk/examples/android/res/layout/activity_connect.xml
+++ /dev/null
@@ -1,72 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<LinearLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical"
- android:weightSum="1"
- android:layout_margin="8dp"
- android:layout_centerHorizontal="true">
-
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal" >
- <ImageButton
- android:id="@+id/add_room_button"
- android:background="@android:drawable/ic_menu_add"
- android:contentDescription="@string/add_room_description"
- android:layout_marginEnd="20dp"
- android:layout_width="48dp"
- android:layout_height="48dp"/>
- <ImageButton
- android:id="@+id/remove_room_button"
- android:background="@android:drawable/ic_delete"
- android:contentDescription="@string/remove_room_description"
- android:layout_marginEnd="20dp"
- android:layout_width="48dp"
- android:layout_height="48dp"/>
- <ImageButton
- android:id="@+id/connect_button"
- android:background="@android:drawable/sym_action_call"
- android:contentDescription="@string/connect_description"
- android:layout_marginEnd="20dp"
- android:layout_width="48dp"
- android:layout_height="48dp"/>
- <ImageButton
- android:id="@+id/connect_loopback_button"
- android:background="@drawable/ic_loopback_call"
- android:contentDescription="@string/connect_loopback_description"
- android:layout_width="48dp"
- android:layout_height="48dp"/>
- </LinearLayout>
- <TextView
- android:id="@+id/room_edittext_description"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_margin="5dp"
- android:text="@string/room_description"/>
- <EditText
- android:id="@+id/room_edittext"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:singleLine="true"
- android:imeOptions="actionDone"/>
- <TextView
- android:id="@+id/room_listview_description"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="5dp"
- android:lines="1"
- android:maxLines="1"
- android:textAppearance="?android:attr/textAppearanceMedium"
- android:text="@string/room_names"/>
- <ListView
- android:id="@+id/room_listview"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:choiceMode="singleChoice"
- android:listSelector="@android:color/darker_gray"
- android:drawSelectorOnTop="false" />
-
-</LinearLayout>
« no previous file with comments | « talk/examples/android/res/layout/activity_call.xml ('k') | talk/examples/android/res/layout/fragment_call.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698