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

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