1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- Copyright (C) 2013 The Android Open Source Project 3 4 Licensed under the Apache License, Version 2.0 (the "License"); 5 you may not use this file except in compliance with the License. 6 You may obtain a copy of the License at 7 8 http://www.apache.org/licenses/LICENSE-2.0 9 10 Unless required by applicable law or agreed to in writing, software 11 distributed under the License is distributed on an "AS IS" BASIS, 12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 See the License for the specific language governing permissions and 14 limitations under the License. 15 --> 16 17 <!-- See corresponding Java code SampleMediaRouterActivity.java. --> 18 19 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 20 android:layout_width="match_parent" 21 android:layout_height="match_parent" 22 android:orientation="vertical"> 23 24 <!-- Message to show to use. --> 25 <TextView android:id="@+id/text" 26 android:layout_width="match_parent" 27 android:layout_height="wrap_content" 28 android:layout_weight="0" 29 android:gravity="center_vertical|center_horizontal" 30 android:textAppearance="?android:attr/textAppearanceMedium" 31 android:text="@string/sample_media_router_text"/> 32 33 <!-- Some information about what's going on. --> 34 <TextView android:id="@+id/info" 35 android:layout_width="match_parent" 36 android:layout_height="wrap_content" 37 android:layout_weight="0" 38 android:gravity="center_vertical|center_horizontal" 39 android:textAppearance="?android:attr/textAppearanceMedium"/> 40 41 <!-- Some media to play. --> 42 <ListView android:id="@+id/media" 43 android:layout_width="match_parent" 44 android:layout_height="wrap_content" 45 android:layout_weight="1"/> 46 47 <!-- Control buttons for the currently selected route. --> 48 <LinearLayout 49 android:layout_width="match_parent" 50 android:layout_height="wrap_content" 51 android:layout_weight="0"> 52 <Button android:id="@+id/play_button" 53 android:layout_width="wrap_content" 54 android:layout_height="wrap_content" 55 android:layout_weight="0" 56 android:text="@string/play_button_text" /> 57 58 <Button android:id="@+id/statistics_button" 59 android:layout_width="wrap_content" 60 android:layout_height="wrap_content" 61 android:layout_weight="0" 62 android:text="@string/statistics_button_text" /> 63 </LinearLayout> 64 </LinearLayout> 65