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:fitsSystemWindows="true" 23 android:layout_width="fill_parent" 24 android:layout_height="wrap_content" 25 > 26 27 <LinearLayout 28 android:orientation="horizontal" 29 android:layout_width="fill_parent" 30 android:layout_height="fill_parent" 31 > 32 <Button 33 android:id="@+id/button1" 34 android:layout_width="20dip" 35 android:layout_height="20dip" 36 android:text="@string/button1" 37 android:textSize="10dip" 38 /> 39 <Button 40 android:id="@+id/button2" 41 android:layout_width="20dip" 42 android:layout_height="20dip" 43 android:text="@string/button2" 44 android:textSize="10dip" 45 /> 46 <Button 47 android:id="@+id/button3" 48 android:layout_width="20dip" 49 android:layout_height="20dip" 50 android:text="@string/button3" 51 android:textSize="10dip" 52 /> 53 </LinearLayout> 54 55 <LinearLayout 56 android:orientation="horizontal" 57 android:layout_width="fill_parent" 58 android:layout_height="fill_parent" 59 > 60 <Button 61 android:id="@+id/button4" 62 android:layout_width="20dip" 63 android:layout_height="20dip" 64 android:text="@string/button4" 65 android:textSize="10dip" 66 /> 67 <Button 68 android:id="@+id/button5" 69 android:layout_width="20dip" 70 android:layout_height="20dip" 71 android:text="@string/button5" 72 android:textSize="10dip" 73 /> 74 <Button 75 android:id="@+id/button6" 76 android:layout_width="20dip" 77 android:layout_height="20dip" 78 android:text="@string/button6" 79 android:textSize="10dip" 80 android:contentDescription="@string/contentDescription" 81 /> 82 </LinearLayout> 83 84 <LinearLayout 85 android:orientation="horizontal" 86 android:layout_width="fill_parent" 87 android:layout_height="fill_parent" 88 > 89 <Button 90 android:id="@+id/button7" 91 android:layout_width="20dip" 92 android:layout_height="20dip" 93 android:text="@string/button7" 94 android:textSize="10dip" 95 /> 96 <Button 97 android:id="@+id/button8" 98 android:layout_width="20dip" 99 android:layout_height="20dip" 100 android:text="@string/button8" 101 android:textSize="10dip" 102 /> 103 <Button 104 android:id="@+id/button9" 105 android:layout_width="20dip" 106 android:layout_height="20dip" 107 android:text="@string/button9" 108 android:textSize="10dip" 109 /> 110 </LinearLayout> 111 112</LinearLayout> 113