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,52 @@
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="10dp"
android:layout_marginTop="10dp"
android:layout_marginStart="10dp">
<View
android:id="@+id/status"
android:background="@color/placeholder_background"
android:layout_width="@dimen/placeholder_status_width"
android:layout_height="@dimen/placeholder_text_height"
android:layout_marginTop="@dimen/padding_10"
android:layout_marginRight="@dimen/activityPadding"
android:layout_alignParentRight="true"
android:layout_marginEnd="@dimen/activityPadding"
android:layout_alignParentEnd="true"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/status">
<LinearLayout
android:orientation="vertical"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginRight="@dimen/placeholder_container_margin_end"
android:layout_weight="1"
android:layout_marginEnd="@dimen/placeholder_container_margin_end">
<View
android:background="@color/placeholder_background"
android:layout_width="@dimen/placeholder_title_width"
android:layout_height="@dimen/placeholder_text_height"
android:layout_marginBottom="@dimen/placeholder_title_margin_bottom"/>
<View
android:background="@color/placeholder_background"
android:layout_width="@dimen/placeholder_station_width"
android:layout_height="@dimen/placeholder_text_height"/>
<View
android:background="@color/placeholder_background"
android:layout_width="match_parent"
android:layout_height="@dimen/placeholder_description_height"
android:layout_marginTop="@dimen/item_issue_description_margin_bottom"/>
</LinearLayout>
<View
android:layout_gravity="center_vertical"
android:background="@color/placeholder_background"
android:layout_width="@dimen/placeholder_arrow_size"
android:layout_height="@dimen/placeholder_arrow_size"
android:layout_marginRight="@dimen/activityPadding"
android:layout_marginEnd="@dimen/activityPadding"/>
</LinearLayout>
</RelativeLayout>