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.

information_view.xml 967B

123456789101112131415161718192021222324252627
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:id="@+id/LinearLayout1"
  4. android:layout_width="match_parent"
  5. android:layout_height="wrap_content"
  6. android:layout_weight="1"
  7. android:orientation="vertical"
  8. android:padding="6dp" >
  9. <TextView
  10. android:id="@android:id/title"
  11. android:layout_width="match_parent"
  12. android:layout_height="wrap_content"
  13. android:ellipsize="marquee"
  14. android:fadingEdge="horizontal"
  15. android:singleLine="true"
  16. android:textAppearance="?android:attr/textAppearanceMedium" />
  17. <TextView
  18. android:id="@android:id/summary"
  19. android:layout_width="match_parent"
  20. android:layout_height="wrap_content"
  21. android:maxLines="4"
  22. android:textAppearance="?android:attr/textAppearanceSmall"
  23. android:textColor="?android:attr/textColorSecondary" />
  24. </LinearLayout>