72 lines
2.4 KiB
XML
72 lines
2.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/main"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
android:background="@color/white"
|
|
tools:context=".masters.sales_screen_mobile.NotificationActivity">
|
|
|
|
<LinearLayout
|
|
android:layout_marginTop="17dp"
|
|
android:background="@drawable/sales_screen_blue_solid_14"
|
|
android:layout_marginHorizontal="10dp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
|
|
<LinearLayout
|
|
android:layout_marginVertical="@dimen/dp_17"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="horizontal"
|
|
android:weightSum="1">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/closeBT"
|
|
android:layout_width="0dp"
|
|
android:layout_weight="0.2"
|
|
android:layout_gravity="center"
|
|
android:gravity="center"
|
|
android:layout_height="match_parent">
|
|
<ImageView
|
|
android:tint="@color/black"
|
|
android:layout_width="25dp"
|
|
android:layout_height="25dp"
|
|
android:src="@drawable/sales_screen_back_icon">
|
|
</ImageView>
|
|
</LinearLayout>
|
|
|
|
<TextView
|
|
android:layout_weight="0.8"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Notification"
|
|
android:textSize="18dp"
|
|
android:textStyle="bold"
|
|
android:textColor="@color/primary_dark_blue"
|
|
android:fontFamily="@font/inter_500"/>
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/notificationRecyclerView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginHorizontal="20dp"
|
|
android:layout_marginVertical="17dp">
|
|
|
|
</androidx.recyclerview.widget.RecyclerView>
|
|
|
|
</LinearLayout> |