mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2026-08-25 08:49:09 +00:00
2896fa3835
- Fix black screen in transition animations - Adjustments to about fragment made about text more label and less button like, header transparency, spacing adjustments, word Contributors replaced by People in Contributors field for de-duplication. - installable actions code de-duplication Extracted install/update/import firmware/user data flows into InstallableActions.kt and reused it from MainActivity and InstallableFragment, reducing duplicated logic, ensuring single source of truth. Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/3699 Reviewed-by: DraVee <chimera@dravee.dev> Reviewed-by: Lizzie <lizzie@eden-emu.dev> Co-authored-by: xbzk <xbzk@eden-emu.dev> Co-committed-by: xbzk <xbzk@eden-emu.dev>
267 lines
12 KiB
XML
267 lines
12 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/coordinator_about"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="?attr/colorSurface"
|
|
>
|
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
|
android:id="@+id/appbar_about"
|
|
style="@style/Widget.Eden.TransparentTopAppBarLayout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:fitsSystemWindows="true"
|
|
android:touchscreenBlocksFocus="false">
|
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
|
android:id="@+id/toolbar_about"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="?attr/actionBarSize"
|
|
android:touchscreenBlocksFocus="false"
|
|
app:navigationIcon="@drawable/ic_back"
|
|
app:title="@string/about" />
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
<androidx.core.widget.NestedScrollView
|
|
android:id="@+id/scroll_about"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:fadeScrollbars="false"
|
|
android:scrollbars="vertical"
|
|
android:defaultFocusHighlightEnabled="false"
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/content_about"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="horizontal"
|
|
android:paddingBottom="24dp"
|
|
android:paddingStart="24dp"
|
|
android:paddingTop="0dp"
|
|
android:paddingEnd="24dp">
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginEnd="32dp"
|
|
android:gravity="center_horizontal"
|
|
android:orientation="vertical">
|
|
|
|
<ImageView
|
|
android:id="@+id/image_logo"
|
|
android:layout_width="200dp"
|
|
android:layout_height="200dp"
|
|
android:layout_marginBottom="8dp"
|
|
android:src="@drawable/ic_yuzu" />
|
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
style="@style/TextAppearance.Material3.TitleMedium"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/app_name"
|
|
android:textAlignment="center" />
|
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
style="@style/TextAppearance.Material3.BodyMedium"
|
|
android:layout_width="220dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="4dp"
|
|
android:text="@string/about_app_description"
|
|
android:textAlignment="center" />
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:orientation="vertical">
|
|
|
|
<com.google.android.material.card.MaterialCardView
|
|
android:id="@+id/button_contributors"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="12dp"
|
|
android:clickable="true"
|
|
android:focusable="true"
|
|
app:cardCornerRadius="16dp"
|
|
app:cardBackgroundColor="?attr/colorSurface"
|
|
app:strokeColor="?attr/colorOutline"
|
|
app:strokeWidth="1dp"
|
|
app:cardElevation="0dp">
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:paddingHorizontal="24dp"
|
|
android:paddingVertical="20dp">
|
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
style="@style/TextAppearance.Material3.TitleMedium"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/contributors"
|
|
android:textAlignment="viewStart" />
|
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
style="@style/TextAppearance.Material3.BodyMedium"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="6dp"
|
|
android:text="@string/contributors_description"
|
|
android:textAlignment="viewStart" />
|
|
|
|
</LinearLayout>
|
|
</com.google.android.material.card.MaterialCardView>
|
|
|
|
<com.google.android.material.card.MaterialCardView
|
|
android:id="@+id/button_licenses"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="12dp"
|
|
android:clickable="true"
|
|
android:focusable="true"
|
|
app:cardCornerRadius="16dp"
|
|
app:cardBackgroundColor="?attr/colorSurface"
|
|
app:strokeColor="?attr/colorOutline"
|
|
app:strokeWidth="1dp"
|
|
app:cardElevation="0dp">
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:paddingHorizontal="24dp"
|
|
android:paddingVertical="20dp">
|
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
style="@style/TextAppearance.Material3.TitleMedium"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/licenses"
|
|
android:textAlignment="viewStart" />
|
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
style="@style/TextAppearance.Material3.BodyMedium"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="6dp"
|
|
android:text="@string/licenses_description"
|
|
android:textAlignment="viewStart" />
|
|
|
|
</LinearLayout>
|
|
</com.google.android.material.card.MaterialCardView>
|
|
|
|
<com.google.android.material.card.MaterialCardView
|
|
android:id="@+id/button_version_name"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="12dp"
|
|
android:clickable="true"
|
|
android:focusable="true"
|
|
app:cardCornerRadius="16dp"
|
|
app:cardBackgroundColor="?attr/colorSurface"
|
|
app:strokeColor="?attr/colorOutline"
|
|
app:strokeWidth="1dp"
|
|
app:cardElevation="0dp">
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:paddingHorizontal="24dp"
|
|
android:paddingVertical="20dp">
|
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
style="@style/TextAppearance.Material3.TitleMedium"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/build"
|
|
android:textAlignment="viewStart" />
|
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
android:id="@+id/text_version_name"
|
|
style="@style/TextAppearance.Material3.BodyMedium"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="6dp"
|
|
android:textAlignment="viewStart"
|
|
tools:text="abc123" />
|
|
|
|
</LinearLayout>
|
|
</com.google.android.material.card.MaterialCardView>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="12dp"
|
|
android:gravity="start"
|
|
android:orientation="horizontal">
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
android:id="@+id/button_discord"
|
|
style="@style/EdenButton.Secondary"
|
|
android:layout_width="56dp"
|
|
android:layout_height="56dp"
|
|
android:layout_marginEnd="12dp"
|
|
app:icon="@drawable/ic_discord"
|
|
app:iconGravity="textStart"
|
|
app:iconSize="24dp"
|
|
app:iconPadding="0dp" />
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
android:id="@+id/button_stoat"
|
|
style="@style/EdenButton.Secondary"
|
|
android:layout_width="56dp"
|
|
android:layout_height="56dp"
|
|
android:layout_marginEnd="12dp"
|
|
app:icon="@drawable/ic_stoat"
|
|
app:iconGravity="textStart"
|
|
app:iconSize="24dp"
|
|
app:iconPadding="0dp" />
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
android:id="@+id/button_x"
|
|
style="@style/EdenButton.Secondary"
|
|
android:layout_width="56dp"
|
|
android:layout_height="56dp"
|
|
android:layout_marginEnd="12dp"
|
|
app:icon="@drawable/ic_x"
|
|
app:iconGravity="textStart"
|
|
app:iconSize="24dp"
|
|
app:iconPadding="0dp" />
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
android:id="@+id/button_website"
|
|
style="@style/EdenButton.Secondary"
|
|
android:layout_width="56dp"
|
|
android:layout_height="56dp"
|
|
android:layout_marginEnd="12dp"
|
|
app:icon="@drawable/ic_website"
|
|
app:iconGravity="textStart"
|
|
app:iconSize="24dp"
|
|
app:iconPadding="0dp" />
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
android:id="@+id/button_github"
|
|
style="@style/EdenButton.Secondary"
|
|
android:layout_width="56dp"
|
|
android:layout_height="56dp"
|
|
app:icon="@drawable/ic_github"
|
|
app:iconGravity="textStart"
|
|
app:iconSize="24dp"
|
|
app:iconPadding="0dp" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</androidx.core.widget.NestedScrollView>
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|