Initial import of ADIF API reverse-engineering toolkit

This commit is contained in:
2025-12-16 08:37:56 +01:00
commit 60388529c1
11486 changed files with 1086536 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
<?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"
android:layout_width="match_parent"
android:layout_height="match_parent">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.adif.elcanomovil.uiHome.views.HomeMapView
android:id="@+id/layoutHomeMap"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_constraintBottom_toTopOf="@+id/frameFakeTab"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"/>
<FrameLayout
android:id="@+id/frameFakeTab"
android:background="@color/transparent"
android:visibility="gone"
android:layout_width="match_parent"
android:layout_height="60dp"
app:layout_constraintBottom_toBottomOf="parent">
<include
android:id="@+id/frameFakeTabInclude"
layout="@layout/fake_tab_view"/>
</FrameLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
<include
android:id="@+id/layoutHomeDetail"
layout="@layout/view_home_detail"/>
</androidx.coordinatorlayout.widget.CoordinatorLayout>