1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- 3 /* 4 ** Copyright 2011, The Android Open Source Project 5 ** 6 ** Licensed under the Apache License, Version 2.0 (the "License"); 7 ** you may not use this file except in compliance with the License. 8 ** You may obtain a copy of the License at 9 ** 10 ** http://www.apache.org/licenses/LICENSE-2.0 11 ** 12 ** Unless required by applicable law or agreed to in writing, software 13 ** distributed under the License is distributed on an "AS IS" BASIS, 14 ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 ** See the License for the specific language governing permissions and 16 ** limitations under the License. 17 */ 18 --> 19 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 20 android:id="@+id/added_content" 21 android:orientation="vertical" 22 android:layout_width="fill_parent" 23 android:layout_height="wrap_content" 24 > 25 26 <LinearLayout 27 android:orientation="horizontal" 28 android:layout_width="fill_parent" 29 android:layout_height="fill_parent" 30 > 31 <Button 32 android:id="@+id/button1" 33 android:layout_width="20dip" 34 android:layout_height="20dip" 35 android:text="@string/button1" 36 android:textSize="10dip" 37 /> 38 <Button 39 android:id="@+id/button2" 40 android:layout_width="20dip" 41 android:layout_height="20dip" 42 android:text="@string/button2" 43 android:textSize="10dip" 44 /> 45 <Button 46 android:id="@+id/button3" 47 android:layout_width="20dip" 48 android:layout_height="20dip" 49 android:text="@string/button3" 50 android:textSize="10dip" 51 /> 52 </LinearLayout> 53 54 <LinearLayout 55 android:orientation="horizontal" 56 android:layout_width="fill_parent" 57 android:layout_height="fill_parent" 58 > 59 <Button 60 android:id="@+id/button4" 61 android:layout_width="20dip" 62 android:layout_height="20dip" 63 android:text="@string/button4" 64 android:textSize="10dip" 65 /> 66 <Button 67 android:id="@+id/button5" 68 android:layout_width="20dip" 69 android:layout_height="20dip" 70 android:text="@string/button5" 71 android:textSize="10dip" 72 /> 73 <Button 74 android:id="@+id/button6" 75 android:layout_width="20dip" 76 android:layout_height="20dip" 77 android:text="@string/button6" 78 android:textSize="10dip" 79 android:contentDescription="@string/contentDescription" 80 /> 81 </LinearLayout> 82 83 <LinearLayout 84 android:orientation="horizontal" 85 android:layout_width="fill_parent" 86 android:layout_height="fill_parent" 87 > 88 <Button 89 android:id="@+id/button7" 90 android:layout_width="20dip" 91 android:layout_height="20dip" 92 android:text="@string/button7" 93 android:textSize="10dip" 94 /> 95 <Button 96 android:id="@+id/button8" 97 android:layout_width="20dip" 98 android:layout_height="20dip" 99 android:text="@string/button8" 100 android:textSize="10dip" 101 /> 102 <Button 103 android:id="@+id/button9" 104 android:layout_width="20dip" 105 android:layout_height="20dip" 106 android:text="@string/button9" 107 android:textSize="10dip" 108 /> 109 </LinearLayout> 110 111 </LinearLayout> 112