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,26 @@
<?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"
android:orientation="vertical"
android:background="@color/black"
android:paddingTop="@dimen/default_padding"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingStart="@dimen/default_padding"
android:paddingEnd="@dimen/default_padding">
<ImageView
android:layout_gravity="center_horizontal"
android:id="@+id/stationOptionIcon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/big_vertical_padding"
android:layout_marginBottom="@dimen/big_vertical_padding"
android:src="@drawable/ic_adif_logo"
android:contentDescription="@null"/>
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/options_recyclerView"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_marginTop="@dimen/big_vertical_padding"
android:layout_weight="1"
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"/>
</LinearLayout>