refs #6284 refactor:deprecated

This commit is contained in:
Sergio De la torre 2024-02-28 09:35:52 +01:00
parent 51160cd1d3
commit 2c476e0bf2
2 changed files with 13 additions and 7 deletions

View File

@ -84,7 +84,7 @@ class LogExpeditionFragment(
private fun setEvents() {
binding.mainToolbar.backButton.setOnClickListener {
requireActivity().onBackPressed()
ma.onBackPressed()
}
binding.scanInput.setOnEditorActionListener { _, actionId, _ ->

View File

@ -71,14 +71,20 @@
</LinearLayout>
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/expeditionloadunload_recyclerview"
android:layout_width="match_parent"
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:clipToPadding="false"
android:visibility="visible"
tools:listitem="@layout/item_expedition_loadunload_row" />
android:descendantFocusability="blocksDescendants">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/expeditionloadunload_recyclerview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clipToPadding="false"
android:visibility="visible"
tools:listitem="@layout/item_expedition_loadunload_row" />
</RelativeLayout>
</LinearLayout>
<include