Planogram pdf and Category image mapping
This commit is contained in:
@@ -21,8 +21,6 @@
|
||||
|
||||
</android.support.design.widget.AppBarLayout>
|
||||
|
||||
<include layout="@layout/content_category_picture" />
|
||||
|
||||
<android.support.design.widget.FloatingActionButton
|
||||
android:id="@+id/fab"
|
||||
android:layout_width="wrap_content"
|
||||
@@ -31,4 +29,6 @@
|
||||
android:layout_margin="@dimen/fab_margin"
|
||||
app:srcCompat="@drawable/save_icon" />
|
||||
|
||||
<include layout="@layout/content_category_picture" />
|
||||
|
||||
</android.support.design.widget.CoordinatorLayout>
|
||||
|
||||
@@ -0,0 +1,34 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<android.support.design.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.PlanogramPDFActivity">
|
||||
|
||||
<android.support.design.widget.AppBarLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:theme="@style/AppTheme.AppBarOverlay">
|
||||
|
||||
<android.support.v7.widget.Toolbar
|
||||
android:id="@+id/toolbar"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="?attr/actionBarSize"
|
||||
android:background="?attr/colorPrimary"
|
||||
app:popupTheme="@style/AppTheme.PopupOverlay" />
|
||||
|
||||
</android.support.design.widget.AppBarLayout>
|
||||
|
||||
<include layout="@layout/content_planogram_pdf" />
|
||||
|
||||
<android.support.design.widget.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"
|
||||
app:srcCompat="@mipmap/download_grey" />
|
||||
|
||||
</android.support.design.widget.CoordinatorLayout>
|
||||
@@ -30,7 +30,7 @@
|
||||
android:layout_width="50dp"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_marginLeft="5dp"
|
||||
android:background="@drawable/camera_orange_star_green" />
|
||||
android:background="@mipmap/camera_orange" />
|
||||
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<android.support.constraint.ConstraintLayout 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"
|
||||
app:layout_behavior="@string/appbar_scrolling_view_behavior"
|
||||
tools:context="cpm.com.gskmtorange.dailyentry.PlanogramPDFActivity"
|
||||
tools:showIn="@layout/activity_planogram_pdf">
|
||||
|
||||
</android.support.constraint.ConstraintLayout>
|
||||
@@ -35,7 +35,7 @@
|
||||
android:layout_marginTop="15dp"
|
||||
android:paddingBottom="20dp"
|
||||
android:paddingLeft="5dp"
|
||||
android:text="@string/uploaddata"
|
||||
android:text="@string/download_data"
|
||||
android:textSize="@dimen/text_size_small" />
|
||||
|
||||
<ProgressBar
|
||||
|
||||
@@ -0,0 +1,70 @@
|
||||
<?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="fill_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:orientation="vertical">
|
||||
|
||||
<android.support.v7.widget.CardView
|
||||
android:layout_width="300dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="20dp"
|
||||
card_view:cardBackgroundColor="@color/colorPrimary"
|
||||
card_view:cardCornerRadius="10dp"
|
||||
>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical"
|
||||
android:layout_marginTop="10dp">
|
||||
|
||||
<TextView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="5dp"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="@dimen/text_size_normal"
|
||||
android:text="@string/select_option"
|
||||
android:gravity="center"
|
||||
android:textStyle="bold"
|
||||
android:layout_marginTop="10dp"
|
||||
/>
|
||||
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="1"
|
||||
android:layout_marginTop="10dp"
|
||||
android:layout_marginBottom="10dp">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal"
|
||||
android:layout_centerInParent="true">
|
||||
|
||||
<Button
|
||||
android:id="@+id/btn_edit"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/edit"
|
||||
/>
|
||||
|
||||
<Button
|
||||
android:layout_marginLeft="10dp"
|
||||
android:id="@+id/btn_delete"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/delete"
|
||||
/>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
</RelativeLayout>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
</android.support.v7.widget.CardView>
|
||||
|
||||
</LinearLayout>
|
||||
@@ -24,6 +24,11 @@
|
||||
android:icon="@drawable/ic_date_range_black"
|
||||
android:title="@string/future_route_plan" />
|
||||
|
||||
<item
|
||||
android:id="@+id/nav_planogram"
|
||||
android:icon="@mipmap/ic_view_quilt_black_48dp"
|
||||
android:title="@string/category_performance_PLANOGRAM" />
|
||||
|
||||
<item
|
||||
android:id="@+id/nav_exit"
|
||||
android:icon="@mipmap/exit_grey"
|
||||
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 140 B |
@@ -65,7 +65,7 @@
|
||||
<string name="menu_setting">Settings</string>
|
||||
<string name="menu_services">Services</string>
|
||||
|
||||
<string name="title_activity_t2_pcompliance">T2P - Monthly Visibility</string>
|
||||
<string name="title_activity_t2_pcompliance">Visibility/T2P</string>
|
||||
|
||||
<!--Gagan start code-->
|
||||
<string name="title_activity_category_list">Category List</string>
|
||||
@@ -76,7 +76,7 @@
|
||||
|
||||
<string name="daily_data_menu_msl_availability">SKU Availability</string>
|
||||
<string name="daily_data_menu_stock_facing">Stock and Facing</string>
|
||||
<string name="daily_data_menu_t2p">T2P - Monthly Visibility</string>
|
||||
<string name="daily_data_menu_t2p">Visibility/T2P</string>
|
||||
<string name="daily_data_menu_additional_visibility">Additional Visibility</string>
|
||||
<string name="daily_data_menu_promo_compliance">Promo Compliance</string>
|
||||
<string name="daily_data_menu_competition_tracking">Competition Visibility</string>
|
||||
@@ -225,6 +225,9 @@
|
||||
<string name="export_database">Export Database</string>
|
||||
<string name="data_exported_successfully">Database Exported Successfully</string>
|
||||
|
||||
<string name="databasexported">Database Exported And Uploaded Successfully</string>
|
||||
|
||||
|
||||
<string name="uploadeddata">Uploaded Data</string>
|
||||
|
||||
<string name="previous_data_upload">Please Upload Previous Data First</string>
|
||||
@@ -278,7 +281,7 @@
|
||||
<string name="stock_planogram_data_uploading">Stock Planogram Data Uploading</string>
|
||||
|
||||
<string name="daily_data_menu_category_picture">Category Pictures</string>
|
||||
<string name="title_activity_category_picture">CategoryPicture</string>
|
||||
<string name="title_activity_category_picture">Category Picture</string>
|
||||
|
||||
<string name="stock_planogram_data_noCamera_data">Please fill the no camera data</string>
|
||||
<string name="stock_planogram_shelf">Shelf </string>
|
||||
@@ -322,6 +325,9 @@
|
||||
<string name="enter_facing">Enter Facing</string>
|
||||
<string name="please_facing">Please fill Facing</string>
|
||||
<string name="please_add_subgroup_facing">Please add atleast one Sub Group to every row</string>
|
||||
<string name="edit">Edit</string>
|
||||
<string name="select_option">Select an option</string>
|
||||
<string name="title_activity_planogram_pdf">Planogram Document</string>
|
||||
|
||||
|
||||
</resources>
|
||||
|
||||
Reference in New Issue
Block a user