学考乐离线App
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.

activity_test_vocabulary.xml 1.8KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <layout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools">
  5. <data>
  6. </data>
  7. <androidx.appcompat.widget.LinearLayoutCompat
  8. android:layout_width="match_parent"
  9. android:layout_height="match_parent"
  10. tools:context=".module.m_service_center.TestVocabularyActivity"
  11. android:background="@color/white"
  12. android:orientation="vertical">
  13. <com.suliang.common.widget.TitleBar
  14. android:id="@+id/title_bar"
  15. android:layout_width="match_parent"
  16. android:layout_height="@dimen/title_bar_height"
  17. app:titleTextValue="@string/test_vocabulary"/>
  18. <View
  19. android:layout_width="match_parent"
  20. android:layout_height="@dimen/line_height"
  21. android:background="@color/gray_1"/>
  22. <TextView
  23. android:layout_width="wrap_content"
  24. android:layout_height="wrap_content"
  25. android:text="请选择你的测试等级"
  26. android:layout_margin="@dimen/global_spacing"
  27. android:textColor="@color/gray_2"
  28. android:textSize="@dimen/normalSize"
  29. />
  30. <View
  31. android:layout_width="match_parent"
  32. android:layout_height="@dimen/line_height"
  33. android:background="@color/gray_1"/>
  34. <androidx.recyclerview.widget.RecyclerView
  35. android:id="@+id/rv"
  36. android:layout_width="match_parent"
  37. android:layout_height="match_parent"
  38. android:overScrollMode="never"
  39. android:layout_marginTop="12dp"
  40. android:scrollbars="none"/>
  41. </androidx.appcompat.widget.LinearLayoutCompat>
  42. </layout>