1<?xml version="1.0" encoding="utf-8"?> 2<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" style="@style/fill"> 3 4 <LinearLayout android:orientation="vertical" 5 android:layout_width="fill_parent" 6 android:layout_height="wrap_content"> 7 8 <LinearLayout 9 android:layout_width="300dp" 10 android:layout_height="wrap_content" 11 android:layout_gravity="center_horizontal" 12 android:layout_marginTop="10dp" 13 android:layout_marginBottom="10dp" 14 android:orientation="vertical"> 15 16 <View style="@style/indexDivider"/> 17 <TextView style="@style/indexLink" android:id="@+id/basicFeatures" android:text="@string/basic.link"/> 18 <View style="@style/indexDivider"/> 19 <TextView style="@style/indexLink" android:id="@+id/imageDisplay" android:text="@string/display.link"/> 20 <View style="@style/indexDivider"/> 21 <TextView style="@style/indexLink" android:id="@+id/eventHandling" android:text="@string/event.link"/> 22 <View style="@style/indexDivider"/> 23 <TextView style="@style/indexLink" android:id="@+id/advancedEventHandling" android:text="@string/advancedevent.link"/> 24 <View style="@style/indexDivider"/> 25 <TextView style="@style/indexLink" android:id="@+id/viewPagerGalleries" android:text="@string/pager.link"/> 26 <View style="@style/indexDivider"/> 27 <TextView style="@style/indexLink" android:id="@+id/animation" android:text="@string/animation.link"/> 28 <View style="@style/indexDivider"/> 29 <TextView style="@style/indexLink" android:id="@+id/extension" android:text="@string/extension.link"/> 30 <View style="@style/indexDivider"/> 31 <TextView style="@style/indexLink" android:id="@+id/configuration" android:text="@string/configuration.link"/> 32 <View style="@style/indexDivider"/> 33 34 </LinearLayout> 35 36 <Button 37 android:id="@+id/github" 38 android:layout_width="wrap_content" 39 android:layout_height="wrap_content" 40 android:layout_margin="10dp" 41 android:layout_gravity="center_horizontal" 42 android:paddingLeft="16dp" 43 android:paddingRight="16dp" 44 android:textSize="16sp" 45 android:text="@string/main.viewongithub"/> 46 47 </LinearLayout> 48</ScrollView> 49