27 lines
1.2 KiB
XML
27 lines
1.2 KiB
XML
<?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>
|