Home | History | Annotate | Download | only in layout
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!-- Copyright (C) 2007 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 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     18     android:orientation="vertical"
     19     android:layout_width="match_parent"
     20     android:layout_height="match_parent">
     21     <TableLayout
     22         android:id="@+id/menu"
     23         android:layout_width="match_parent"
     24         android:layout_height="wrap_content">
     25 
     26         <TableRow>
     27             <TextView
     28                 android:layout_column="1"
     29                 android:text="@string/table_layout_8_open"
     30                 android:padding="3dip" />
     31             <TextView
     32                 android:text="@string/table_layout_8_open_shortcut"
     33                 android:gravity="right"
     34                 android:padding="3dip" />
     35         </TableRow>
     36 
     37         <TableRow>
     38             <TextView
     39                 android:layout_column="1"
     40                 android:text="@string/table_layout_8_save"
     41                 android:padding="3dip" />
     42             <TextView
     43                 android:text="@string/table_layout_8_save_shortcut"
     44                 android:gravity="right"
     45                 android:padding="3dip" />
     46         </TableRow>
     47 
     48         <TableRow>
     49             <TextView
     50                 android:layout_column="1"
     51                 android:text="@string/table_layout_8_save_as"
     52                 android:padding="3dip" />
     53             <TextView
     54                 android:text="@string/table_layout_8_save_as_shortcut"
     55                 android:gravity="right"
     56                 android:padding="3dip" />
     57         </TableRow>
     58 
     59         <TableRow>
     60             <TextView
     61                 android:text="@string/table_layout_8_x"
     62                 android:padding="3dip" />
     63             <TextView
     64                 android:text="@string/table_layout_8_import"
     65                 android:padding="3dip" />
     66         </TableRow>
     67 
     68         <TableRow>
     69             <TextView
     70                 android:text="@string/table_layout_8_x"
     71                 android:padding="3dip" />
     72             <TextView
     73                 android:text="@string/table_layout_8_export"
     74                 android:padding="3dip" />
     75             <TextView
     76                 android:text="@string/table_layout_8_export_shortcut"
     77                 android:gravity="right"
     78                 android:padding="3dip" />
     79         </TableRow>
     80     </TableLayout>
     81 
     82     <Button
     83         android:id="@+id/toggle"
     84         android:layout_width="wrap_content"
     85         android:layout_height="wrap_content"
     86         android:text="@string/table_layout_8_toggle_stretch" />
     87 </LinearLayout>
     88