initial_commit

This commit is contained in:
ravik
2025-10-03 13:35:15 +05:30
parent 42c1685176
commit 564797c2c9
90 changed files with 3196 additions and 1139 deletions
@@ -0,0 +1,7 @@
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
<corners android:radius="5dp"/>
<solid android:color="@color/white"/>
<stroke android:width="1dp"
android:color="@color/colorPrimary"/>
</shape>
@@ -20,6 +20,7 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:visibility="gone"
android:layout_marginBottom="8dp"/>
<ScrollView
@@ -9,6 +9,8 @@
android:fitsSystemWindows="true"
tools:openDrawer="start">
<include
layout="@layout/app_bar_main"
android:layout_width="match_parent"
@@ -0,0 +1,39 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout 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:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context="cpm.com.gskmtorange.dailyentry.PD_Pog_Activity">
<com.google.android.material.appbar.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/white"
android:elevation="8dp"
app:popupTheme="@style/AppTheme.PopupOverlay"
app:theme="@style/ThemeOverlay.AppCompat.Light" />
</com.google.android.material.appbar.AppBarLayout>
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_margin="@dimen/fab_margin"
android:visibility="visible"
app:srcCompat="@drawable/save_icon" />
<include
android:id="@+id/rlContent"
layout="@layout/content_ir_pog_picture" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>
@@ -0,0 +1,30 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout 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:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context="cpm.com.gskmtorange.dailyentry.PD_Realtime_Report">
<com.google.android.material.appbar.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/white"
android:elevation="8dp"
app:popupTheme="@style/AppTheme.PopupOverlay"
app:theme="@style/ThemeOverlay.AppCompat.Light" />
</com.google.android.material.appbar.AppBarLayout>
<include
android:id="@+id/rlContent"
layout="@layout/content_realtime" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>
@@ -0,0 +1,44 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout 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:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context="cpm.com.gskmtorange.dailyentry.PD_Realtime_Report_Detail">
<com.google.android.material.appbar.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/white"
android:elevation="8dp"
app:popupTheme="@style/AppTheme.PopupOverlay"
app:theme="@style/ThemeOverlay.AppCompat.Light" />
</com.google.android.material.appbar.AppBarLayout>
<ProgressBar
android:id="@+id/progressBar"
style="?android:attr/progressBarStyleLarge"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:visibility="gone" />
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_marginTop="55dp"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<!--<include
android:id="@+id/rlContent"
layout="@layout/content_realtime" />-->
</androidx.coordinatorlayout.widget.CoordinatorLayout>
@@ -0,0 +1,4 @@
<WebView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/webView"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
@@ -0,0 +1,20 @@
<?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:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/grey_background"
android:orientation="vertical"
android:padding="@dimen/activity_horizontal_margin"
android:weightSum="100"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="cpm.com.gskmtorange.dailyentry.PD_Pog_Activity"
tools:showIn="@layout/activity_pd_pog">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerViewSubCat"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
@@ -6,6 +6,7 @@
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context=".password.MPinActivity"
android:fitsSystemWindows="true"
tools:showIn="@layout/activity_mpin">
<FrameLayout
@@ -0,0 +1,20 @@
<?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:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/grey_background"
android:orientation="vertical"
android:padding="@dimen/activity_horizontal_margin"
android:weightSum="100"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="cpm.com.gskmtorange.dailyentry.PD_Realtime_Report"
tools:showIn="@layout/activity_pd_realtime_report">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerViewSubCat"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
@@ -0,0 +1,110 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.cardview.widget.CardView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="12dp"
app:cardCornerRadius="16dp"
app:cardElevation="5dp"
app:cardUseCompatPadding="true">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<!-- Highlight Header -->
<TextView
android:id="@+id/tvCategory"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/colorAccent"
android:padding="12dp"
android:text="Category Name"
android:textSize="18sp"
android:textStyle="bold"
android:textColor="@android:color/white"
android:gravity="center"/>
<!-- Content Section -->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="16dp">
<!-- Scores -->
<TextView
android:id="@+id/tvMsl"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="MSL: 75%"
android:textSize="16sp"
android:textColor="@android:color/black"
android:layout_marginTop="6dp"/>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#DDDDDD"
android:layout_marginTop="6dp"/>
<TextView
android:id="@+id/tvPosm"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="POSM: 80%"
android:textSize="16sp"
android:textColor="@android:color/black"
android:layout_marginTop="6dp"/>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#DDDDDD"
android:layout_marginTop="6dp"/>
<TextView
android:id="@+id/tvSosSku"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="SOS SKU: 65%"
android:textSize="16sp"
android:textColor="@android:color/black"
android:layout_marginTop="6dp"/>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#DDDDDD"
android:layout_marginTop="6dp"/>
<TextView
android:id="@+id/tvSosBrand"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="SOS Brand: 70%"
android:textSize="16sp"
android:textColor="@android:color/black"
android:layout_marginTop="6dp"/>
<!-- Brand Details Section -->
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Brand Details:"
android:textStyle="bold"
android:textSize="16sp"
android:layout_marginTop="12dp"
android:textColor="@android:color/black"/>
<LinearLayout
android:id="@+id/layoutBrands"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_marginTop="4dp"/>
</LinearLayout>
</LinearLayout>
</androidx.cardview.widget.CardView>
@@ -0,0 +1,107 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.cardview.widget.CardView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="12dp"
app:cardCornerRadius="16dp"
app:cardElevation="5dp"
app:cardUseCompatPadding="true">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<!-- Header with highlight background -->
<TextView
android:id="@+id/tvTitle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/colorAccent"
android:text="Overall Score"
android:padding="12dp"
android:textColor="@android:color/white"
android:textSize="18sp"
android:textStyle="bold"
android:gravity="center"/>
<!-- Content section -->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="16dp">
<TextView
android:id="@+id/tvOsa"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="OSA: 20.00%"
android:textSize="16sp"
android:textColor="@android:color/black"
android:layout_marginTop="6dp"/>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#DDDDDD"
android:layout_marginTop="6dp"/>
<TextView
android:id="@+id/tvMsl"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="MSL: 0%"
android:textSize="16sp"
android:textColor="@android:color/black"
android:layout_marginTop="6dp"/>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#DDDDDD"
android:layout_marginTop="6dp"/>
<TextView
android:id="@+id/tvPosm"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="POSM: 0%"
android:textSize="16sp"
android:textColor="@android:color/black"
android:layout_marginTop="6dp"/>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#DDDDDD"
android:layout_marginTop="6dp"/>
<TextView
android:id="@+id/tvSosSku"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="SOS (SKU): 50%"
android:textSize="16sp"
android:textColor="@android:color/black"
android:layout_marginTop="6dp"/>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#DDDDDD"
android:layout_marginTop="6dp"/>
<TextView
android:id="@+id/tvSosBrand"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="SOS (Brand): 4.9%"
android:textSize="16sp"
android:textColor="@android:color/black"
android:layout_marginTop="6dp"/>
</LinearLayout>
</LinearLayout>
</androidx.cardview.widget.CardView>
@@ -0,0 +1,30 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.cardview.widget.CardView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="12dp"
app:cardCornerRadius="12dp"
app:cardElevation="5dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<ImageView
android:id="@+id/ivRawImage"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scaleType="centerCrop"/>
<!-- <Button
android:id="@+id/btnViewImage"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="@color/white"
android:gravity="center"
android:textAllCaps="false"
android:text="View Image Analytics"
android:background="@color/colorAccent"/>-->
</LinearLayout>
</androidx.cardview.widget.CardView>
@@ -0,0 +1,83 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:background="@drawable/rectangle_realtime_card"
android:orientation="vertical">
<androidx.cardview.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="2dp"
android:layout_marginLeft="2dp"
android:layout_marginRight="2dp"
android:layout_marginTop="2dp"
card_view:cardCornerRadius="5dp"
card_view:cardPreventCornerOverlap="false">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:orientation="vertical">
<TextView
android:id="@+id/tv_sub_category"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginLeft="10dp"
android:layout_marginRight="6sp"
android:layout_marginTop="7dp"
android:gravity="center"
android:text="Text View "
android:textSize="18sp"
android:textColor="@color/colorPrimary"
android:textStyle="bold" />
<Button
android:id="@+id/analyticBT"
android:layout_width="wrap_content"
android:layout_height="30dp"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginTop="15dp"
android:layout_marginLeft="12dp"
android:gravity="center"
android:paddingLeft="8dp"
android:paddingRight="8dp"
android:textAllCaps="false"
android:background="@drawable/rectangle_realtime_card"
android:textSize="12sp"
android:textColor="@color/colorPrimary"
android:fontFamily="sans-serif-medium"
/>
</LinearLayout>
</androidx.cardview.widget.CardView>
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/img_recycler"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:visibility="gone"
android:layout_margin="@dimen/custom_margin" />
<ImageView
android:id="@+id/img_start_session"
android:layout_width="80dp"
android:layout_height="80dp"
android:visibility="gone"
android:layout_marginStart="@dimen/fab_margin"
android:src="@mipmap/startsession" />
</LinearLayout>
</LinearLayout>
@@ -5,6 +5,7 @@
android:layout_height="wrap_content"
android:orientation="vertical">
<androidx.cardview.widget.CardView
android:layout_width="match_parent"
android:layout_height="50dp"
@@ -93,6 +93,11 @@
android:id="@+id/nav_services"
android:icon="@mipmap/services_grey"
android:title="@string/menu_services" />
<item
android:id="@+id/nav_version"
android:icon="@mipmap/exit_grey"
android:title="" />
</menu>
</item>
@@ -235,4 +235,5 @@
<string name="comment">تعليق</string>
<string name="competition_promotion">تعليق</string>
<string name="exists">التواجد</string>
<string name="view_report_pd">عرض التقرير</string>
</resources>
@@ -52,6 +52,7 @@
<string name="menu_exit">Exit</string>
<string name="menu_setting">Settings</string>
<string name="menu_services">Services</string>
<string name="menu_version">Version/Versiyon</string>
<string name="title_activity_t2_pcompliance">Visibility/T2P</string>
<!--Gagan start code-->
<string name="title_activity_category_list">Category List</string>
@@ -457,7 +458,10 @@
<string name="title_activity_ir_image">IR Category Images</string>
<string name="title_activity_ir_visibility">IR Visibility Images</string>
<string name="title_activity_ir_pog">IR POG Images</string>
<string name="ir_data_upload">IR Category Data Uploading</string>
<string name="ir_visibility_data_upload">IR Visibilty Images Data Uploading</string>
<string name="view_report_pd">View Report</string>
</resources>
@@ -1,4 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
</PreferenceScreen>
<network-security-config>
<domain-config>
<domain includeSubdomains="true">gskme2.parinaam.in</domain>
<trust-anchors>
<certificates src="system" />
<certificates src="user" />
</trust-anchors>
</domain-config>
</network-security-config>