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

service_center_fragment.xml 1.1KB

123456789101112131415161718192021222324252627282930
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <androidx.appcompat.widget.LinearLayoutCompat
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:orientation="vertical"
  8. tools:context=".module.m_service_center.ServiceCenterFragment"
  9. android:background="@color/white_1">
  10. <TextView
  11. android:layout_width="match_parent"
  12. android:layout_height="@dimen/title_bar_height"
  13. android:text="@string/serviceCenter"
  14. android:gravity="center"
  15. android:textColor="@color/main_text_color"
  16. android:textSize="@dimen/bigSize"
  17. android:textStyle="bold"
  18. android:background="@color/white"/>
  19. <androidx.recyclerview.widget.RecyclerView
  20. android:id="@+id/rv"
  21. android:layout_width="match_parent"
  22. android:layout_height="wrap_content"
  23. android:overScrollMode="never"
  24. android:paddingTop="5dp"
  25. android:paddingStart="5dp"
  26. android:paddingEnd="@dimen/global_spacing"/>
  27. </androidx.appcompat.widget.LinearLayoutCompat>