skyline/app/src/main/res/layout/app_dialog_dummy.xml

143 lines
4.6 KiB
XML

<?xml version="1.0" encoding="utf-8"?><!-- This is a dummy layout which serves as a preview of AppDialog -->
<ScrollView 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="wrap_content">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:paddingHorizontal="16dp">
<include
layout="@layout/app_dialog_drag_indicator"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<View
android:layout_width="match_parent"
android:layout_height="@dimen/section_spacing" />
<include
layout="@layout/app_dialog_game_info"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<View
android:layout_width="match_parent"
android:layout_height="@dimen/section_spacing" />
<include
android:id="@+id/updates_title"
layout="@layout/app_dialog_section_header" />
<View
android:layout_width="match_parent"
android:layout_height="@dimen/section_spacing" />
<include layout="@layout/app_dialog_updates_item" />
<View
android:layout_width="match_parent"
android:layout_height="@dimen/section_spacing" />
<include layout="@layout/app_dialog_updates_item" />
<View
android:layout_width="match_parent"
android:layout_height="@dimen/section_spacing" />
<include
android:id="@+id/dlcs_title"
layout="@layout/app_dialog_section_header" />
<View
android:layout_width="match_parent"
android:layout_height="@dimen/section_spacing" />
<include layout="@layout/app_dialog_dlcs_item" />
<View
android:layout_width="match_parent"
android:layout_height="@dimen/section_spacing" />
<include layout="@layout/app_dialog_dlcs_item" />
<View
android:layout_width="match_parent"
android:layout_height="@dimen/section_spacing" />
<include
android:id="@+id/issues_title"
layout="@layout/app_dialog_section_header"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<View
android:layout_width="match_parent"
android:layout_height="@dimen/section_spacing" />
<include layout="@layout/app_dialog_issues_item" />
<View
android:layout_width="match_parent"
android:layout_height="@dimen/section_spacing" />
<include layout="@layout/app_dialog_issues_item" />
<View
android:layout_width="match_parent"
android:layout_height="@dimen/section_spacing" />
<include
android:id="@+id/notes_title"
layout="@layout/app_dialog_section_header"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<View
android:layout_width="match_parent"
android:layout_height="@dimen/section_spacing" />
<include layout="@layout/app_dialog_notes_item" />
<View
android:layout_width="match_parent"
android:layout_height="@dimen/section_spacing" />
<include
android:id="@+id/cheats_title"
layout="@layout/app_dialog_section_header"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<View
android:layout_width="match_parent"
android:layout_height="@dimen/section_spacing" />
<include layout="@layout/app_dialog_cheats_item" />
<View
android:layout_width="match_parent"
android:layout_height="@dimen/section_spacing" />
<include
android:id="@+id/saves_title"
layout="@layout/app_dialog_section_header"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<View
android:layout_width="match_parent"
android:layout_height="@dimen/section_spacing" />
<include layout="@layout/app_dialog_saves_item" />
<View
android:layout_width="match_parent"
android:layout_height="@dimen/section_spacing" />
</LinearLayout>
</ScrollView>