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.

main.xml 1.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. android:padding="8dp" >
  7. <LinearLayout
  8. android:id="@+id/loading"
  9. android:layout_width="match_parent"
  10. android:layout_height="wrap_content"
  11. android:gravity="center"
  12. android:orientation="vertical"
  13. android:visibility="gone" >
  14. <ProgressBar
  15. style="?android:attr/progressBarStyleLarge"
  16. android:layout_width="wrap_content"
  17. android:layout_height="wrap_content"
  18. android:layout_marginBottom="16dp" />
  19. <TextView
  20. android:layout_width="wrap_content"
  21. android:layout_height="wrap_content"
  22. android:text="@string/loading" />
  23. </LinearLayout>
  24. <LinearLayout
  25. android:id="@+id/success"
  26. android:layout_width="match_parent"
  27. android:layout_height="wrap_content"
  28. android:orientation="vertical"
  29. android:visibility="visible" >
  30. <ListView
  31. android:id="@+id/properties"
  32. android:layout_width="match_parent"
  33. android:layout_height="wrap_content" >
  34. </ListView>
  35. </LinearLayout>
  36. <LinearLayout
  37. android:id="@+id/failure"
  38. android:layout_width="match_parent"
  39. android:layout_height="wrap_content"
  40. android:orientation="vertical"
  41. android:visibility="gone" >
  42. <TextView
  43. style="@android:style/TextAppearance.Large"
  44. android:layout_width="wrap_content"
  45. android:layout_height="wrap_content"
  46. android:text="@string/loading_failed" />
  47. </LinearLayout>
  48. </LinearLayout>