| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233 |
- <?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"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:fitsSystemWindows="true">
- <com.google.android.material.appbar.MaterialToolbar
- android:id="@+id/toolbar_about"
- android:layout_width="match_parent"
- android:layout_height="?attr/actionBarSize"
- 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"
- 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">
- <ImageView
- android:id="@+id/image_logo"
- android:layout_width="200dp"
- android:layout_height="200dp"
- android:layout_gravity="center_horizontal"
- android:padding="20dp"
- android:src="@drawable/ic_yuzu_title" />
- <LinearLayout
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:orientation="vertical">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical"
- android:paddingHorizontal="16dp"
- android:paddingVertical="16dp">
- <com.google.android.material.textview.MaterialTextView
- style="@style/TextAppearance.Material3.TitleMedium"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginHorizontal="24dp"
- android:text="@string/about"
- 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_marginHorizontal="24dp"
- android:layout_marginTop="6dp"
- android:text="@string/about_app_description"
- android:textAlignment="viewStart" />
- </LinearLayout>
- <com.google.android.material.divider.MaterialDivider
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginHorizontal="20dp" />
- <LinearLayout
- android:id="@+id/button_contributors"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="?attr/selectableItemBackground"
- android:orientation="vertical"
- android:paddingHorizontal="16dp"
- android:paddingVertical="16dp">
- <com.google.android.material.textview.MaterialTextView
- style="@style/TextAppearance.Material3.TitleMedium"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginHorizontal="24dp"
- 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_marginHorizontal="24dp"
- android:layout_marginTop="6dp"
- android:text="@string/contributors_description"
- android:textAlignment="viewStart" />
- </LinearLayout>
- <com.google.android.material.divider.MaterialDivider
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginHorizontal="20dp" />
- <LinearLayout
- android:id="@+id/button_licenses"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="?attr/selectableItemBackground"
- android:orientation="vertical"
- android:paddingHorizontal="16dp"
- android:paddingVertical="16dp">
- <com.google.android.material.textview.MaterialTextView
- style="@style/TextAppearance.Material3.TitleMedium"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginHorizontal="24dp"
- 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_marginHorizontal="24dp"
- android:layout_marginTop="6dp"
- android:text="@string/licenses_description"
- android:textAlignment="viewStart" />
- </LinearLayout>
- <com.google.android.material.divider.MaterialDivider
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginHorizontal="20dp" />
- <LinearLayout
- android:id="@+id/button_build_hash"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="?attr/selectableItemBackground"
- android:orientation="vertical"
- android:paddingHorizontal="16dp"
- android:paddingVertical="16dp">
- <com.google.android.material.textview.MaterialTextView
- style="@style/TextAppearance.Material3.TitleMedium"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginHorizontal="24dp"
- android:text="@string/build"
- android:textAlignment="viewStart" />
- <com.google.android.material.textview.MaterialTextView
- android:id="@+id/text_build_hash"
- style="@style/TextAppearance.Material3.BodyMedium"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginHorizontal="24dp"
- android:layout_marginTop="6dp"
- android:textAlignment="viewStart"
- tools:text="abc123" />
- </LinearLayout>
- <com.google.android.material.divider.MaterialDivider
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginHorizontal="20dp" />
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginHorizontal="40dp"
- android:layout_marginTop="12dp"
- android:layout_marginBottom="16dp"
- android:gravity="center_horizontal"
- android:orientation="horizontal">
- <Button
- android:id="@+id/button_discord"
- style="?attr/materialIconButtonStyle"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- app:icon="@drawable/ic_discord"
- app:iconGravity="textEnd"
- app:iconSize="24dp"
- app:iconTint="?attr/colorOnSurface" />
- <Button
- android:id="@+id/button_website"
- style="?attr/materialIconButtonStyle"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- app:icon="@drawable/ic_website"
- app:iconGravity="textEnd"
- app:iconSize="24dp"
- app:iconTint="?attr/colorOnSurface" />
- <Button
- android:id="@+id/button_github"
- style="?attr/materialIconButtonStyle"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- app:icon="@drawable/ic_github"
- app:iconGravity="textEnd"
- app:iconSize="24dp"
- app:iconTint="?attr/colorOnSurface" />
- </LinearLayout>
- </LinearLayout>
- </LinearLayout>
- </androidx.core.widget.NestedScrollView>
- </androidx.coordinatorlayout.widget.CoordinatorLayout>
|