1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- Copyright (C) 2011 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 <view class="com.android.browser.view.EventRedirectingFrameLayout" 17 xmlns:android="http://schemas.android.com/apk/res/android" 18 android:id="@+id/pages" 19 android:paddingTop="6dip"> 20 21 <LinearLayout 22 android:layout_width="match_parent" 23 android:layout_height="match_parent" 24 android:orientation="vertical" 25 android:background="@android:color/black"> 26 27 <TextView 28 android:layout_width="match_parent" 29 android:layout_height="wrap_content" 30 android:text="@string/import_bookmarks_dialog_description" 31 android:textAppearance="?android:attr/textAppearanceMedium" 32 android:textColor="?android:attr/textColorAlertDialogListItem" /> 33 34 <ListView 35 android:id="@+id/add_remove_bookmarks" 36 android:layout_width="match_parent" 37 android:layout_height="wrap_content" 38 android:layout_marginTop="10dp" 39 android:divider="?android:attr/listDividerAlertDialog" 40 android:scrollbars="vertical" 41 android:overScrollMode="ifContentScrolls" 42 android:choiceMode="singleChoice" /> 43 44 </LinearLayout> 45 46 <LinearLayout 47 android:layout_width="match_parent" 48 android:layout_height="match_parent" 49 android:orientation="vertical" 50 android:background="@android:color/black"> 51 52 <TextView 53 android:id="@+id/select_account_description" 54 android:layout_width="match_parent" 55 android:layout_height="wrap_content" 56 android:textAppearance="?android:attr/textAppearanceMedium" 57 android:textColor="?android:attr/textColorAlertDialogListItem" /> 58 59 <ListView 60 android:id="@+id/select_account" 61 android:layout_width="match_parent" 62 android:layout_height="wrap_content" 63 android:layout_marginTop="10dp" 64 android:divider="?android:attr/listDividerAlertDialog" 65 android:scrollbars="vertical" 66 android:overScrollMode="ifContentScrolls" 67 android:choiceMode="singleChoice" /> 68 69 </LinearLayout> 70 71 <TextView 72 android:id="@+id/confirm" 73 android:layout_width="match_parent" 74 android:layout_height="match_parent" 75 android:background="@android:color/black" 76 android:textAppearance="?android:attr/textAppearanceMedium" /> 77 78 </view> 79