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,32 @@
<?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="@drawable/widget_rounded_background"
android:layout_width="match_parent"
android:layout_height="match_parent">
<include
android:id="@+id/circulation_station_view"
android:visibility="visible"
android:layout_width="match_parent"
android:layout_height="wrap_content"
layout="@layout/widget_main_header"/>
<include
android:id="@+id/appwidget_info_header"
android:visibility="visible"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
layout="@layout/item_widget_circulation_header"/>
<ListView
android:id="@+id/appwidget_listview"
android:background="@color/color_separator_line"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:nestedScrollingEnabled="false"/>
<include
android:id="@+id/appwidget_empty_view"
android:visibility="gone"
android:layout_width="match_parent"
android:layout_height="wrap_content"
layout="@layout/item_widget_empty"/>
</LinearLayout>