Context-detection API for Android developed as a university project
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

results.xml 1.7KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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/resultsheader"
  9. android:layout_width="fill_parent"
  10. android:layout_height="wrap_content"
  11. android:text="@string/resultsheader"
  12. android:textSize="25sp"
  13. android:textStyle="bold"/>
  14. <TextView
  15. android:id="@+id/resultsblurb"
  16. android:layout_width="fill_parent"
  17. android:layout_height="wrap_content"
  18. android:text="@string/resultsblurb"
  19. android:layout_marginBottom="15dip"/>
  20. <TextView
  21. android:id="@+id/resultsresult"
  22. android:layout_width="fill_parent"
  23. android:layout_height="wrap_content"
  24. android:text="@string/resultsresult"
  25. android:textSize="25sp"
  26. android:layout_gravity="fill"
  27. android:layout_weight="1"
  28. android:gravity="center"
  29. android:textStyle="bold"
  30. android:layout_marginBottom="15dip"/>
  31. <TextView
  32. android:id="@+id/resultscorrect"
  33. android:layout_width="fill_parent"
  34. android:layout_height="wrap_content"
  35. android:text="@string/resultscorrect"
  36. android:layout_marginBottom="15dip"/>
  37. <Button
  38. android:id="@+id/resultsyes"
  39. android:layout_width="fill_parent"
  40. android:layout_height="wrap_content"
  41. android:text="@string/yesbutton"/>
  42. <Button
  43. android:id="@+id/resultsno"
  44. android:layout_width="fill_parent"
  45. android:layout_height="wrap_content"
  46. android:text="@string/nobutton"/>
  47. </LinearLayout>