123456789101112131415161718192021222324252627282930 |
- <?xml version="1.0" encoding="utf-8"?>
- <androidx.appcompat.widget.LinearLayoutCompat
- xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical"
- tools:context=".module.m_service_center.ServiceCenterFragment"
- android:background="@color/white_1">
-
- <TextView
- android:layout_width="match_parent"
- android:layout_height="@dimen/title_bar_height"
- android:text="@string/serviceCenter"
- android:gravity="center"
- android:textColor="@color/main_text_color"
- android:textSize="@dimen/bigSize"
- android:textStyle="bold"
- android:background="@color/white"/>
-
- <androidx.recyclerview.widget.RecyclerView
- android:id="@+id/rv"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:overScrollMode="never"
- android:paddingTop="5dp"
- android:paddingStart="5dp"
- android:paddingEnd="@dimen/global_spacing"/>
-
- </androidx.appcompat.widget.LinearLayoutCompat>
|