Compare commits
2 Commits
9d52a81923
...
b3b4b1025e
Author | SHA1 | Date |
---|---|---|
leca | b3b4b1025e | |
leca | 47bd1ae46e |
|
@ -49,6 +49,8 @@ dependencies {
|
||||||
androidTestImplementation(libs.androidx.junit)
|
androidTestImplementation(libs.androidx.junit)
|
||||||
androidTestImplementation(libs.androidx.espresso.core)
|
androidTestImplementation(libs.androidx.espresso.core)
|
||||||
|
|
||||||
|
// implementation("com.google.android.material:1.2.0")
|
||||||
|
|
||||||
// Barcode scanning API
|
// Barcode scanning API
|
||||||
implementation (libs.barcode.scanning)
|
implementation (libs.barcode.scanning)
|
||||||
// CameraX library
|
// CameraX library
|
||||||
|
|
|
@ -37,7 +37,7 @@
|
||||||
|
|
||||||
<provider
|
<provider
|
||||||
android:name="androidx.core.content.FileProvider"
|
android:name="androidx.core.content.FileProvider"
|
||||||
android:authorities="com.google.firebase.components.activities.StorageActivity.provider;com.google.firebase.components.activities.FullscreenActivity.provider;com.google.firebase.components.activities.AddProductActivity.provider"
|
android:authorities="com.google.firebase.components.activities.MainActivity.provider;com.google.firebase.components.activities.FullscreenActivity.provider;com.google.firebase.components.activities.AddProductActivity.provider"
|
||||||
android:exported="false"
|
android:exported="false"
|
||||||
android:grantUriPermissions="true">
|
android:grantUriPermissions="true">
|
||||||
<meta-data
|
<meta-data
|
||||||
|
@ -51,7 +51,7 @@
|
||||||
</meta-data>
|
</meta-data>
|
||||||
|
|
||||||
<activity
|
<activity
|
||||||
android:name=".activities.StorageActivity"
|
android:name=".activities.MainActivity"
|
||||||
android:exported="true"
|
android:exported="true"
|
||||||
android:theme="@style/Theme.BarcodeScannerForEmployees">
|
android:theme="@style/Theme.BarcodeScannerForEmployees">
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
|
|
|
@ -0,0 +1,29 @@
|
||||||
|
package org.foxarmy.barcodescannerforemployees
|
||||||
|
|
||||||
|
import androidx.fragment.app.Fragment
|
||||||
|
import androidx.fragment.app.FragmentManager
|
||||||
|
import androidx.fragment.app.FragmentPagerAdapter
|
||||||
|
|
||||||
|
class ViewPagerAdapter
|
||||||
|
public constructor(supportFragmentManager: FragmentManager) : FragmentPagerAdapter(supportFragmentManager) {
|
||||||
|
|
||||||
|
private final var fragmentList1: ArrayList<Fragment> = ArrayList()
|
||||||
|
private final var fragmentTitleList1: ArrayList<String> = ArrayList()
|
||||||
|
|
||||||
|
public override fun getItem(position: Int): Fragment {
|
||||||
|
return fragmentList1.get(position)
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun getPageTitle(position: Int): CharSequence {
|
||||||
|
return fragmentTitleList1.get(position)
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun getCount(): Int {
|
||||||
|
return fragmentList1.size
|
||||||
|
}
|
||||||
|
|
||||||
|
fun addFragment(fragment: Fragment, title: String) {
|
||||||
|
fragmentList1.add(fragment)
|
||||||
|
fragmentTitleList1.add(title)
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,105 @@
|
||||||
|
package org.foxarmy.barcodescannerforemployees.activities
|
||||||
|
|
||||||
|
import android.content.Intent
|
||||||
|
import android.os.Bundle
|
||||||
|
import android.util.Log
|
||||||
|
import android.view.Menu
|
||||||
|
import android.view.MenuItem
|
||||||
|
import android.widget.ImageView
|
||||||
|
import androidx.appcompat.app.AppCompatActivity
|
||||||
|
import androidx.core.content.ContextCompat
|
||||||
|
import androidx.core.view.children
|
||||||
|
import androidx.gridlayout.widget.GridLayout
|
||||||
|
import androidx.viewpager.widget.ViewPager
|
||||||
|
import org.foxarmy.barcodescannerforemployees.DBStorageController
|
||||||
|
import org.foxarmy.barcodescannerforemployees.R
|
||||||
|
import org.foxarmy.barcodescannerforemployees.ViewPagerAdapter
|
||||||
|
import org.foxarmy.barcodescannerforemployees.databinding.ActivityMainBinding
|
||||||
|
import org.foxarmy.barcodescannerforemployees.fragments.CategoriesFragment
|
||||||
|
import org.foxarmy.barcodescannerforemployees.fragments.StorageFragment
|
||||||
|
import org.foxarmy.barcodescannerforemployees.views.AbstractProductView
|
||||||
|
|
||||||
|
class MainActivity : AppCompatActivity() {
|
||||||
|
|
||||||
|
// private lateinit var appBarConfiguration: AppBarConfiguration
|
||||||
|
private lateinit var binding: ActivityMainBinding
|
||||||
|
public lateinit var adapter: ViewPagerAdapter
|
||||||
|
|
||||||
|
override fun onCreate(savedInstanceState: Bundle?) {
|
||||||
|
super.onCreate(savedInstanceState)
|
||||||
|
|
||||||
|
binding = ActivityMainBinding.inflate(layoutInflater)
|
||||||
|
setContentView(binding.root)
|
||||||
|
|
||||||
|
setSupportActionBar(binding.toolbar)
|
||||||
|
setupViewPager(binding.tabViewpager)
|
||||||
|
binding.tabTablayout.setupWithViewPager(binding.tabViewpager)
|
||||||
|
|
||||||
|
// val navController = findNavController(R.id.nav_host_fragment_content_storage)
|
||||||
|
// appBarConfiguration = AppBarConfiguration(navController.graph)
|
||||||
|
// setupActionBarWithNavController(navController, appBarConfiguration)
|
||||||
|
|
||||||
|
binding.addProductFab.setOnClickListener { view ->
|
||||||
|
val addProductIntent = Intent(this, AddProductActivity::class.java)
|
||||||
|
val extras = Bundle()
|
||||||
|
ContextCompat.startActivity(this, addProductIntent, extras)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun setupViewPager(viewpager: ViewPager) {
|
||||||
|
adapter = ViewPagerAdapter(supportFragmentManager)
|
||||||
|
|
||||||
|
adapter.addFragment(CategoriesFragment(), "Categories")
|
||||||
|
adapter.addFragment(StorageFragment(), "Storage")
|
||||||
|
//TODO: shelf and settings fragments
|
||||||
|
|
||||||
|
// setting adapter to view pager.
|
||||||
|
viewpager.setAdapter(adapter)
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onCreateOptionsMenu(menu: Menu): Boolean {
|
||||||
|
menuInflater.inflate(R.menu.menu_main, menu)
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onOptionsItemSelected(item: MenuItem): Boolean {
|
||||||
|
return when (item.itemId) {
|
||||||
|
R.id.action_settings -> {
|
||||||
|
true
|
||||||
|
}
|
||||||
|
R.id.action_delete -> {
|
||||||
|
// if there's no selected items, write a toast about it, otherwise delete those items.
|
||||||
|
val currentPosition = binding.tabTablayout.selectedTabPosition
|
||||||
|
val fragment = adapter.getItem(currentPosition)
|
||||||
|
|
||||||
|
when (fragment::class.simpleName.toString()) {
|
||||||
|
"StorageFragment" -> {
|
||||||
|
val storageFragment = fragment as StorageFragment
|
||||||
|
storageFragment.removeSelected()
|
||||||
|
// storageFragment.updateContent()
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// val storageFragment = supportFragmentManager.findFragmentById(R.id.nav_host_fragment_content_storage)?.childFragmentManager!!.fragments[0] as StorageFragment
|
||||||
|
// val amountOfViews = storageFragment.view?.findViewById<GridLayout>(R.id.contentGridLayout)?.childCount
|
||||||
|
//
|
||||||
|
// for (view: AbstractProductView in storageFragment.view?.findViewById<GridLayout>(R.id.contentGridLayout)?.children!!.iterator() as Iterator<AbstractProductView>) {
|
||||||
|
// val db = DBStorageController(this)
|
||||||
|
// if (view.isProductSelected) {
|
||||||
|
// db.eraseAbstractProduct(db.writableDatabase , view.product.id, this)
|
||||||
|
// Log.d("QWERTYUIOP", "Removing ${view.product.id}")
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
// storageFragment.updateContent()
|
||||||
|
true
|
||||||
|
}
|
||||||
|
else -> super.onOptionsItemSelected(item)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// override fun onSupportNavigateUp(): Boolean {
|
||||||
|
// val navController = findNavController(R.id.nav_host_fragment_content_storage)
|
||||||
|
// return navController.navigateUp(appBarConfiguration)
|
||||||
|
// || super.onSupportNavigateUp()
|
||||||
|
// }
|
||||||
|
}
|
|
@ -1,80 +0,0 @@
|
||||||
package org.foxarmy.barcodescannerforemployees.activities
|
|
||||||
|
|
||||||
import android.content.Intent
|
|
||||||
import android.os.Bundle
|
|
||||||
import android.util.Log
|
|
||||||
import android.view.Menu
|
|
||||||
import android.view.MenuItem
|
|
||||||
import androidx.appcompat.app.AppCompatActivity
|
|
||||||
import androidx.core.content.ContextCompat
|
|
||||||
import androidx.core.view.children
|
|
||||||
import androidx.gridlayout.widget.GridLayout
|
|
||||||
import androidx.navigation.findNavController
|
|
||||||
import androidx.navigation.ui.AppBarConfiguration
|
|
||||||
import androidx.navigation.ui.navigateUp
|
|
||||||
import androidx.navigation.ui.setupActionBarWithNavController
|
|
||||||
import org.foxarmy.barcodescannerforemployees.DBStorageController
|
|
||||||
import org.foxarmy.barcodescannerforemployees.R
|
|
||||||
import org.foxarmy.barcodescannerforemployees.databinding.ActivityStorageBinding
|
|
||||||
import org.foxarmy.barcodescannerforemployees.fragments.StorageFragment
|
|
||||||
import org.foxarmy.barcodescannerforemployees.views.AbstractProductView
|
|
||||||
|
|
||||||
class StorageActivity : AppCompatActivity() {
|
|
||||||
|
|
||||||
private lateinit var appBarConfiguration: AppBarConfiguration
|
|
||||||
private lateinit var binding: ActivityStorageBinding
|
|
||||||
|
|
||||||
override fun onCreate(savedInstanceState: Bundle?) {
|
|
||||||
super.onCreate(savedInstanceState)
|
|
||||||
|
|
||||||
binding = ActivityStorageBinding.inflate(layoutInflater)
|
|
||||||
setContentView(binding.root)
|
|
||||||
|
|
||||||
setSupportActionBar(binding.toolbar)
|
|
||||||
|
|
||||||
val navController = findNavController(R.id.nav_host_fragment_content_storage)
|
|
||||||
appBarConfiguration = AppBarConfiguration(navController.graph)
|
|
||||||
setupActionBarWithNavController(navController, appBarConfiguration)
|
|
||||||
|
|
||||||
binding.addProductFab.setOnClickListener { view ->
|
|
||||||
val addProductIntent = Intent(this, AddProductActivity::class.java)
|
|
||||||
val extras = Bundle()
|
|
||||||
ContextCompat.startActivity(this, addProductIntent, extras)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun onCreateOptionsMenu(menu: Menu): Boolean {
|
|
||||||
menuInflater.inflate(R.menu.menu_main, menu)
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun onOptionsItemSelected(item: MenuItem): Boolean {
|
|
||||||
return when (item.itemId) {
|
|
||||||
R.id.action_settings -> {
|
|
||||||
true
|
|
||||||
}
|
|
||||||
R.id.action_delete -> {
|
|
||||||
// if there's no selected items, write a toast about it, otherwise delete those items.
|
|
||||||
val storageFragment = supportFragmentManager.findFragmentById(R.id.nav_host_fragment_content_storage)?.childFragmentManager!!.fragments[0] as StorageFragment
|
|
||||||
val amountOfViews = storageFragment.view?.findViewById<GridLayout>(R.id.contentGridLayout)?.childCount
|
|
||||||
|
|
||||||
for (view: AbstractProductView in storageFragment.view?.findViewById<GridLayout>(R.id.contentGridLayout)?.children!!.iterator() as Iterator<AbstractProductView>) {
|
|
||||||
val db = DBStorageController(this)
|
|
||||||
if (view.isProductSelected) {
|
|
||||||
db.eraseAbstractProduct(db.writableDatabase , view.product.id, this)
|
|
||||||
Log.d("QWERTYUIOP", "Removing ${view.product.id}")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
storageFragment.updateContent()
|
|
||||||
true
|
|
||||||
}
|
|
||||||
else -> super.onOptionsItemSelected(item)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun onSupportNavigateUp(): Boolean {
|
|
||||||
val navController = findNavController(R.id.nav_host_fragment_content_storage)
|
|
||||||
return navController.navigateUp(appBarConfiguration)
|
|
||||||
|| super.onSupportNavigateUp()
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -0,0 +1,70 @@
|
||||||
|
package org.foxarmy.barcodescannerforemployees.fragments
|
||||||
|
|
||||||
|
import android.os.Bundle
|
||||||
|
import android.view.LayoutInflater
|
||||||
|
import android.view.View
|
||||||
|
import android.view.ViewGroup
|
||||||
|
import androidx.fragment.app.Fragment
|
||||||
|
import org.foxarmy.barcodescannerforemployees.R
|
||||||
|
|
||||||
|
class CategoriesFragment : Fragment() {
|
||||||
|
override fun onCreate(savedInstanceState: Bundle?) {
|
||||||
|
super.onCreate(savedInstanceState)
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onCreateView(
|
||||||
|
inflater: LayoutInflater, container: ViewGroup?,
|
||||||
|
savedInstanceState: Bundle?
|
||||||
|
): View? {
|
||||||
|
// Inflate the layout for this fragment
|
||||||
|
return inflater.inflate(R.layout.fragment_categories, container, false)
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onResume() {
|
||||||
|
super.onResume()
|
||||||
|
|
||||||
|
// updateContent()
|
||||||
|
}
|
||||||
|
|
||||||
|
// public fun updateContent() {
|
||||||
|
//
|
||||||
|
// val grv = getView()?.findViewById<GridLayout>(R.id.contentGridLayout)
|
||||||
|
// grv?.removeAllViews()
|
||||||
|
//
|
||||||
|
// val db = DBStorageController(requireContext()).readableDatabase
|
||||||
|
// val projection = arrayOf(
|
||||||
|
// BaseColumns._ID,
|
||||||
|
// ProductContract.ProductEntry.PRODUCT_NAME,
|
||||||
|
// ProductContract.ProductEntry.PRODUCT_NET_WEIGHT,
|
||||||
|
// ProductContract.ProductEntry.IMAGE_FILENAME
|
||||||
|
// )
|
||||||
|
//
|
||||||
|
// val cursor = db.query(ProductContract.ProductEntry.TABLE_NAME, projection, null, null, null, null, null)
|
||||||
|
//
|
||||||
|
// with (cursor) {
|
||||||
|
// while(moveToNext()) {
|
||||||
|
// val productId = getInt(getColumnIndexOrThrow(BaseColumns._ID))
|
||||||
|
// val productName = getString(getColumnIndexOrThrow(ProductContract.ProductEntry.PRODUCT_NAME))
|
||||||
|
// val netWeight = getDouble(getColumnIndexOrThrow(ProductContract.ProductEntry.PRODUCT_NET_WEIGHT))
|
||||||
|
// val productImageHash = getString(getColumnIndexOrThrow(ProductContract.ProductEntry.IMAGE_FILENAME))
|
||||||
|
//
|
||||||
|
// val product = AbstractProduct(productId, productName, netWeight, productImageHash, 1)
|
||||||
|
//
|
||||||
|
// generateThumbnailForImage(context!!, productImageHash)
|
||||||
|
//
|
||||||
|
// val abstractProduct = AbstractProductView(
|
||||||
|
// requireActivity(),
|
||||||
|
// requireContext(),
|
||||||
|
// product
|
||||||
|
// )
|
||||||
|
// grv?.addView(abstractProduct)
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
|
||||||
|
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
|
||||||
|
super.onViewCreated(view, savedInstanceState)
|
||||||
|
|
||||||
|
// updateContent()
|
||||||
|
}
|
||||||
|
}
|
|
@ -2,9 +2,12 @@ package org.foxarmy.barcodescannerforemployees.fragments
|
||||||
|
|
||||||
import android.os.Bundle
|
import android.os.Bundle
|
||||||
import android.provider.BaseColumns
|
import android.provider.BaseColumns
|
||||||
|
import android.util.Log
|
||||||
import android.view.LayoutInflater
|
import android.view.LayoutInflater
|
||||||
import android.view.View
|
import android.view.View
|
||||||
import android.view.ViewGroup
|
import android.view.ViewGroup
|
||||||
|
import android.widget.ImageView
|
||||||
|
import androidx.core.view.children
|
||||||
import androidx.fragment.app.Fragment
|
import androidx.fragment.app.Fragment
|
||||||
import androidx.gridlayout.widget.GridLayout
|
import androidx.gridlayout.widget.GridLayout
|
||||||
import org.foxarmy.barcodescannerforemployees.*
|
import org.foxarmy.barcodescannerforemployees.*
|
||||||
|
@ -37,7 +40,24 @@ class StorageFragment : Fragment() {
|
||||||
updateContent()
|
updateContent()
|
||||||
}
|
}
|
||||||
|
|
||||||
public fun updateContent() {
|
fun removeSelected() {
|
||||||
|
val grv = getView()?.findViewById<GridLayout>(R.id.contentGridLayout)
|
||||||
|
|
||||||
|
val db = DBStorageController(requireContext())
|
||||||
|
|
||||||
|
for (view: AbstractProductView in grv?.children!!.iterator() as Iterator<AbstractProductView>) {
|
||||||
|
view.findViewById<ImageView>(R.id.productPicture).setImageURI(null)
|
||||||
|
if (view.isProductSelected) {
|
||||||
|
db.eraseAbstractProduct(db.writableDatabase, view.product.id, requireContext())
|
||||||
|
Log.d("QWERTYUIOP", "Removing ${view.product.id}")
|
||||||
|
} else {
|
||||||
|
Log.d("QWERTYUIOP", "Not ${view.product.id}")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
updateContent()
|
||||||
|
}
|
||||||
|
|
||||||
|
fun updateContent() {
|
||||||
|
|
||||||
val grv = getView()?.findViewById<GridLayout>(R.id.contentGridLayout)
|
val grv = getView()?.findViewById<GridLayout>(R.id.contentGridLayout)
|
||||||
grv?.removeAllViews()
|
grv?.removeAllViews()
|
||||||
|
|
|
@ -4,6 +4,7 @@ import android.app.Activity
|
||||||
import android.content.Context
|
import android.content.Context
|
||||||
import android.content.Intent
|
import android.content.Intent
|
||||||
import android.os.Bundle
|
import android.os.Bundle
|
||||||
|
import android.util.Log
|
||||||
import android.view.LayoutInflater
|
import android.view.LayoutInflater
|
||||||
import android.widget.ImageView
|
import android.widget.ImageView
|
||||||
import android.widget.LinearLayout
|
import android.widget.LinearLayout
|
||||||
|
@ -65,6 +66,8 @@ class AbstractProductView: LinearLayout {
|
||||||
|
|
||||||
productLayout.setOnLongClickListener {
|
productLayout.setOnLongClickListener {
|
||||||
isProductSelected = !isProductSelected
|
isProductSelected = !isProductSelected
|
||||||
|
Log.d("QWERTYUIOP", "Changed to value $isProductSelected")
|
||||||
|
|
||||||
this.background = ContextCompat.getDrawable(context, if (isProductSelected) R.drawable.outline_selected else R.drawable.outline)
|
this.background = ContextCompat.getDrawable(context, if (isProductSelected) R.drawable.outline_selected else R.drawable.outline)
|
||||||
true
|
true
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:fitsSystemWindows="true"
|
android:fitsSystemWindows="true"
|
||||||
tools:context=".activities.StorageActivity">
|
tools:context=".activities.MainActivity">
|
||||||
|
|
||||||
<androidx.constraintlayout.widget.ConstraintLayout
|
<androidx.constraintlayout.widget.ConstraintLayout
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
|
@ -24,9 +24,23 @@
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="?attr/actionBarSize"/>
|
android:layout_height="?attr/actionBarSize"/>
|
||||||
|
|
||||||
|
<com.google.android.material.tabs.TabLayout
|
||||||
|
android:id="@+id/tab_tablayout"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
app:tabIndicatorColor="#FFF"
|
||||||
|
app:tabIndicatorHeight="3dp"
|
||||||
|
app:tabMode="fixed" />
|
||||||
|
|
||||||
</com.google.android.material.appbar.AppBarLayout>
|
</com.google.android.material.appbar.AppBarLayout>
|
||||||
|
|
||||||
<include layout="@layout/content_storage"/>
|
<!-- <include layout="@layout/content_storage"/>-->
|
||||||
|
<androidx.viewpager.widget.ViewPager
|
||||||
|
android:id="@+id/tab_viewpager"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:layout_marginTop="5dp"
|
||||||
|
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
|
||||||
|
|
||||||
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
||||||
android:id="@+id/add_product_fab"
|
android:id="@+id/add_product_fab"
|
|
@ -16,5 +16,5 @@
|
||||||
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintTop_toTopOf="parent"
|
||||||
app:layout_constraintBottom_toBottomOf="parent"
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
app:defaultNavHost="true"
|
app:defaultNavHost="true"
|
||||||
app:navGraph="@navigation/nav_graph_storage"/>
|
app:navGraph="@navigation/nav_graph_main"/>
|
||||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
@ -0,0 +1,13 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<FrameLayout 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:id="@+id/fragment_storage"
|
||||||
|
tools:context=".fragments.CategoriesFragment">
|
||||||
|
<ScrollView
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:id="@+id/categoriesLayout">
|
||||||
|
</ScrollView>
|
||||||
|
</FrameLayout>
|
|
@ -1,7 +1,7 @@
|
||||||
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
xmlns:tools="http://schemas.android.com/tools"
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
tools:context="org.foxarmy.barcodescannerforemployees.activities.StorageActivity">
|
tools:context="org.foxarmy.barcodescannerforemployees.activities.MainActivity">
|
||||||
<item android:id="@+id/action_settings"
|
<item android:id="@+id/action_settings"
|
||||||
android:title="@string/action_settings"
|
android:title="@string/action_settings"
|
||||||
android:orderInCategory="100"
|
android:orderInCategory="100"
|
||||||
|
|
Loading…
Reference in New Issue