1<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 2 android:id="@+id/RelativeLayout1" 3 android:layout_width="fill_parent" 4 android:layout_height="fill_parent" 5 android:background="#F0F0F0" > 6 7 <TextView 8 android:id="@+id/textView_about" 9 android:layout_width="wrap_content" 10 android:layout_height="fill_parent" 11 android:layout_alignParentLeft="true" 12 android:layout_alignParentTop="true" 13 android:autoLink="web" 14 android:fontFamily="@font/ubuntu_medium" 15 android:gravity="center|top" 16 android:paddingTop="15dp" 17 android:text="@string/about_clpeak" 18 android:textAppearance="?android:attr/textAppearanceMedium" /> 19 20</RelativeLayout> 21