/CVox/res/layout/act_browse.xml
XML | 81 lines | 17 code | 4 blank | 60 comment | 0 complexity | c3b559cf0c03951cb2efaf89f7e0a785 MD5 | raw file
1<!-- 2 Copyright (C) 2008 Jeffrey Sharkey, http://jsharkey.org/ 3 4 This program is free software: you can redistribute it and/or modify 5 it under the terms of the GNU General Public License as published by 6 the Free Software Foundation, either version 3 of the License, or 7 (at your option) any later version. 8 9 This program is distributed in the hope that it will be useful, 10 but WITHOUT ANY WARRANTY; without even the implied warranty of 11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 GNU General Public License for more details. 13 14 You should have received a copy of the GNU General Public License 15 along with this program. If not, see <http://www.gnu.org/licenses/>. 16--> 17 18<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 19 android:layout_width="fill_parent" 20 android:layout_height="fill_parent"> 21 <!-- 22 <LinearLayout 23 android:id="@+id/browse_install" 24 android:layout_width="fill_parent" 25 android:layout_height="wrap_content" 26 android:visibility="gone" 27 android:orientation="vertical" 28 android:padding="10dip" 29 android:background="#fccf" 30 > 31 32 <TextView 33 android:layout_width="fill_parent" 34 android:layout_height="wrap_content" 35 android:text="@string/install_title" 36 android:textAppearance="?android:attr/textAppearanceMedium" 37 android:textColor="#f000" 38 android:paddingBottom="5dip" 39 /> 40 41 <TextView 42 android:layout_width="fill_parent" 43 android:layout_height="wrap_content" 44 android:text="@string/install_warn" 45 android:textStyle="bold" 46 android:paddingBottom="5dip" 47 android:textAppearance="?android:attr/textAppearanceSmall" 48 android:textColor="#f000" 49 /> 50 51 <Button 52 android:id="@android:id/button1" 53 android:layout_width="wrap_content" 54 android:layout_height="wrap_content" 55 android:layout_gravity="center_horizontal" 56 android:text="@string/install_action" 57 android:textColor="#f000" 58 android:paddingLeft="10dip" 59 android:paddingRight="10dip" 60 /> 61 62 63 </LinearLayout> 64 --> 65 <WebView 66 android:id="@+id/browse_webview" 67 android:layout_width="fill_parent" 68 android:layout_height="fill_parent" 69 android:layout_weight="1" 70 /> 71 72 <FrameLayout 73 android:id="@+id/browse_zoom" 74 android:layout_width="wrap_content" 75 android:layout_height="wrap_content" 76 android:layout_alignParentBottom="true" 77 android:layout_centerHorizontal="true" 78 /> 79 80</RelativeLayout> 81