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.3KB

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