dialog_speaker.xml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  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="wrap_content"
  5. android:orientation="vertical">
  6. <TextView
  7. android:layout_width="match_parent"
  8. android:layout_height="wrap_content"
  9. android:padding="5dp"
  10. android:text="选择发音人"
  11. android:textSize="18sp" />
  12. <FrameLayout
  13. android:layout_width="match_parent"
  14. android:layout_height="wrap_content">
  15. <ListView
  16. android:id="@+id/lv_speaker"
  17. android:layout_width="match_parent"
  18. android:layout_height="350dp"
  19. android:divider="@color/nineCGray"
  20. android:dividerHeight="0.5dp"
  21. android:orientation="vertical"
  22. android:paddingLeft="5dp"
  23. android:paddingRight="5dp" />
  24. <View
  25. android:layout_width="match_parent"
  26. android:layout_height="4dp"
  27. android:background="@drawable/shadow" />
  28. </FrameLayout>
  29. </LinearLayout>