eSpeak NG is an open source speech synthesizer that supports more than hundred languages and accents.
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.

voice_variant_preference.xml 1.8KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:orientation="vertical" >
  6. <LinearLayout
  7. android:layout_width="match_parent"
  8. android:layout_height="48dp"
  9. android:layout_gravity="center">
  10. <TextView
  11. android:layout_width="0dp"
  12. android:layout_height="wrap_content"
  13. android:textAppearance="?android:attr/textAppearanceMedium"
  14. android:text="@string/category"
  15. android:layout_weight="0.5"
  16. android:gravity="center_vertical"
  17. android:layout_gravity="center_vertical" />
  18. <Spinner
  19. android:layout_width="0dp"
  20. android:layout_height="wrap_content"
  21. android:id="@+id/category"
  22. android:layout_weight="0.5"
  23. android:gravity="bottom"
  24. android:layout_gravity="center_vertical" />
  25. </LinearLayout>
  26. <LinearLayout
  27. android:layout_width="match_parent"
  28. android:layout_height="48dp">
  29. <TextView
  30. android:layout_width="0dp"
  31. android:layout_height="wrap_content"
  32. android:textAppearance="?android:attr/textAppearanceMedium"
  33. android:text="@string/variant"
  34. android:layout_weight="0.5"
  35. android:gravity="center_vertical"
  36. android:layout_gravity="center_vertical" />
  37. <Spinner
  38. android:layout_width="0dp"
  39. android:layout_height="wrap_content"
  40. android:id="@+id/variant"
  41. android:layout_weight="0.5"
  42. android:gravity="bottom"
  43. android:layout_gravity="center_vertical" />
  44. </LinearLayout>
  45. </LinearLayout>