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.

speak_punctuation_preference.xml 1.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. <RadioGroup
  7. android:layout_width="fill_parent"
  8. android:layout_height="wrap_content"
  9. android:focusable="false"
  10. android:id="@+id/options">
  11. <RadioButton
  12. android:layout_width="match_parent"
  13. android:layout_height="48dp"
  14. android:text="@string/punctuation_all"
  15. android:id="@+id/all"
  16. android:focusable="false"
  17. android:focusableInTouchMode="false"
  18. android:clickable="true"
  19. android:checked="false" />
  20. <RadioButton
  21. android:layout_width="match_parent"
  22. android:layout_height="48dp"
  23. android:text="@string/punctuation_custom"
  24. android:id="@+id/custom"
  25. android:focusable="false"
  26. android:focusableInTouchMode="false"
  27. android:clickable="true" />
  28. <RadioButton
  29. android:layout_width="match_parent"
  30. android:layout_height="48dp"
  31. android:text="@string/punctuation_none"
  32. android:id="@+id/none" />
  33. </RadioGroup>
  34. <EditText
  35. android:layout_width="fill_parent"
  36. android:layout_height="48dp"
  37. android:id="@+id/punctuation_characters"
  38. android:hint="@string/punctuation_characters" />
  39. </LinearLayout>