view_bg_main.xml 868 B

12345678910111213141516171819202122232425
  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:background="#282b2d"
  6. android:gravity="center_horizontal"
  7. android:orientation="vertical">
  8. <TextView
  9. android:layout_width="wrap_content"
  10. android:layout_height="wrap_content"
  11. android:layout_marginTop="5dp"
  12. android:padding="5dp"
  13. android:text="App由章启翔开发"
  14. android:textColor="#626668"
  15. android:textSize="15sp" />
  16. <TextView
  17. android:layout_width="wrap_content"
  18. android:layout_height="wrap_content"
  19. android:padding="5dp"
  20. android:text="语音技术由科大讯飞提供"
  21. android:textColor="#626668"
  22. android:textSize="15sp" />
  23. </LinearLayout>