Context-detection API for Android developed as a university project
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

1234567891011121314151617181920212223242526272829303132333435
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:orientation="vertical"
  4. android:layout_width="fill_parent"
  5. android:layout_height="fill_parent"
  6. android:padding="5px">
  7. <TextView
  8. android:id="@+id/thanksheader"
  9. android:layout_width="fill_parent"
  10. android:layout_height="wrap_content"
  11. android:text="@string/thanksheader"
  12. android:textSize="25sp"
  13. android:textStyle="bold"
  14. android:layout_marginBottom="15dip"/>
  15. <TextView
  16. android:id="@+id/thanksblurb"
  17. android:layout_width="fill_parent"
  18. android:layout_height="wrap_content"
  19. android:text="@string/thanksblurb"
  20. android:layout_marginBottom="25dip"/>
  21. <TextView
  22. android:id="@+id/thankslinktext"
  23. android:layout_width="fill_parent"
  24. android:layout_height="wrap_content"
  25. android:text="@string/thankslinktext"
  26. android:layout_marginBottom="15dip"/>
  27. <TextView
  28. android:id="@+id/thankslink"
  29. android:layout_width="fill_parent"
  30. android:layout_height="wrap_content"
  31. android:layout_marginBottom="15dip"
  32. android:autoLink="all"
  33. android:linksClickable="true"
  34. android:gravity="center"/>
  35. </LinearLayout>