1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- 3 /** 4 * Copyright (C) 2014 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 20 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 21 style="@style/MainTextContainer"> 22 23 <TextView 24 android:id="@+id/learn_more_text1" 25 style="@style/MainText"/> 26 27 <TextView 28 android:id="@+id/learn_more_text2" 29 android:text="@string/contact_your_admin_for_more_info" 30 style="@style/MainText"/> 31 32 <TextView 33 android:id="@+id/learn_more_link" 34 android:textColor="@color/colored_button" 35 android:text="@string/learn_more_link" 36 style="@style/MainText"/> 37 38 <RelativeLayout 39 android:layout_width="fill_parent" 40 android:layout_height="@dimen/row_height" 41 android:paddingTop="@dimen/row_padding_top"> 42 43 <Button 44 android:id="@+id/positive_button" 45 android:layout_alignParentRight="true" 46 android:layout_alignParentBottom="true" 47 android:text="@string/ok_setup" 48 android:textColor="@color/colored_button" 49 style="@style/TransparentButton" /> 50 51 <Button 52 android:id="@+id/negative_button" 53 android:layout_alignParentBottom="true" 54 android:layout_toLeftOf="@id/positive_button" 55 android:text="@string/cancel_setup" 56 style="@style/TransparentButton" /> 57 58 </RelativeLayout> 59 60 </LinearLayout>