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.

seekbar_preference.xml 1.1KB

12345678910111213141516171819202122232425262728293031323334353637
  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:padding="16dp"
  6. android:orientation="vertical" >
  7. <TextView
  8. android:id="@+id/valueText"
  9. android:layout_width="match_parent"
  10. android:layout_height="0dp"
  11. android:layout_weight="1"
  12. android:gravity="center_horizontal"
  13. android:textAppearance="?android:attr/textAppearanceMedium" />
  14. <SeekBar
  15. android:id="@+id/seekBar"
  16. android:layout_width="match_parent"
  17. android:layout_height="0dp"
  18. android:layout_weight="1" />
  19. <LinearLayout
  20. android:layout_width="match_parent"
  21. android:layout_height="wrap_content"
  22. android:layout_weight="1" >
  23. <Button
  24. android:id="@+id/resetToDefault"
  25. android:layout_width="wrap_content"
  26. android:layout_height="wrap_content"
  27. android:layout_gravity="bottom"
  28. android:layout_weight="1"
  29. android:text="@string/resetToDefault" />
  30. </LinearLayout>
  31. </LinearLayout>