1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- Copyright (C) 2008 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 <!-- This activity displays search queries and "results" --> 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 <!-- Section: Information --> 25 <TextView 26 android:layout_width="match_parent" 27 android:layout_height="wrap_content" 28 android:paddingBottom="4dip" 29 android:text="@string/msg_search_results" /> 30 31 <!-- Section: Search Query String --> 32 <LinearLayout 33 android:layout_width="match_parent" 34 android:layout_height="wrap_content" 35 android:orientation="horizontal"> 36 37 <TextView 38 android:layout_width="wrap_content" 39 android:layout_height="wrap_content" 40 android:text="@string/label_search_query" /> 41 <TextView android:id="@+id/txt_query" 42 android:layout_width="wrap_content" 43 android:layout_height="wrap_content" /> 44 </LinearLayout> 45 46 <!-- Section: Search Query application context data --> 47 <LinearLayout 48 android:layout_width="match_parent" 49 android:layout_height="wrap_content" 50 android:orientation="horizontal"> 51 52 <TextView 53 android:layout_width="wrap_content" 54 android:layout_height="wrap_content" 55 android:text="@string/label_search_appdata" /> 56 <TextView android:id="@+id/txt_appdata" 57 android:layout_width="wrap_content" 58 android:layout_height="wrap_content" /> 59 </LinearLayout> 60 61 <!-- Section: How the query was delivered --> 62 <LinearLayout 63 android:layout_width="match_parent" 64 android:layout_height="wrap_content" 65 android:orientation="horizontal"> 66 67 <TextView 68 android:layout_width="wrap_content" 69 android:layout_height="wrap_content" 70 android:text="@string/label_search_deliveredby" /> 71 <TextView android:id="@+id/txt_deliveredby" 72 android:layout_width="wrap_content" 73 android:layout_height="wrap_content" /> 74 </LinearLayout> 75 76 </LinearLayout> 77