83 lines
3.8 KiB
XML
83 lines
3.8 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<androidx.constraintlayout.widget.ConstraintLayout 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"
|
||
|
|
android:padding="@dimen/twelve">
|
||
|
|
|
||
|
|
<com.google.android.material.imageview.ShapeableImageView
|
||
|
|
android:id="@+id/launcherIcon"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
app:layout_constraintEnd_toEndOf="parent"
|
||
|
|
app:layout_constraintStart_toStartOf="parent"
|
||
|
|
app:layout_constraintTop_toTopOf="parent"
|
||
|
|
app:srcCompat="@mipmap/ic_launcher" />
|
||
|
|
|
||
|
|
<com.google.android.material.textview.MaterialTextView
|
||
|
|
android:id="@+id/appName"
|
||
|
|
style="@style/TextAppearance.Material3.TitleMedium"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginTop="@dimen/twelve"
|
||
|
|
android:text="@string/app_name"
|
||
|
|
app:layout_constraintEnd_toEndOf="parent"
|
||
|
|
app:layout_constraintStart_toStartOf="parent"
|
||
|
|
app:layout_constraintTop_toBottomOf="@+id/launcherIcon" />
|
||
|
|
|
||
|
|
<com.google.android.material.textview.MaterialTextView
|
||
|
|
android:id="@+id/developerName"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginTop="@dimen/twelve"
|
||
|
|
android:text="@string/developer_name"
|
||
|
|
app:fontFamily="sans-serif-smallcaps"
|
||
|
|
app:layout_constraintEnd_toEndOf="parent"
|
||
|
|
app:layout_constraintStart_toStartOf="parent"
|
||
|
|
app:layout_constraintTop_toBottomOf="@+id/appName" />
|
||
|
|
|
||
|
|
<com.google.android.material.button.MaterialButtonToggleGroup
|
||
|
|
android:id="@+id/aboutButtonGroup"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginVertical="@dimen/twentyTwo"
|
||
|
|
app:layout_constraintBottom_toTopOf="@id/acknowledgements"
|
||
|
|
app:layout_constraintEnd_toEndOf="parent"
|
||
|
|
app:layout_constraintStart_toStartOf="parent"
|
||
|
|
app:layout_constraintTop_toBottomOf="@+id/developerName">
|
||
|
|
|
||
|
|
<com.google.android.material.button.MaterialButton
|
||
|
|
android:id="@+id/sourceCode"
|
||
|
|
style="@style/Widget.Material3.Button.ElevatedButton"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="@string/source_code" />
|
||
|
|
|
||
|
|
<com.google.android.material.button.MaterialButton
|
||
|
|
android:id="@+id/wiki"
|
||
|
|
style="@style/Widget.Material3.Button.ElevatedButton"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="@string/wiki" />
|
||
|
|
|
||
|
|
<com.google.android.material.button.MaterialButton
|
||
|
|
android:id="@+id/telegramGroup"
|
||
|
|
style="@style/Widget.Material3.Button.ElevatedButton"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="@string/telegram_group" />
|
||
|
|
</com.google.android.material.button.MaterialButtonToggleGroup>
|
||
|
|
|
||
|
|
<com.google.android.material.textview.MaterialTextView
|
||
|
|
android:id="@+id/acknowledgements"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:autoLink="web"
|
||
|
|
android:gravity="center"
|
||
|
|
android:lineSpacingExtra="@dimen/lineSpace"
|
||
|
|
android:text="@string/acknowledgements"
|
||
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
||
|
|
app:layout_constraintEnd_toEndOf="parent"
|
||
|
|
app:layout_constraintStart_toStartOf="parent"
|
||
|
|
app:layout_constraintTop_toBottomOf="@+id/aboutButtonGroup" />
|
||
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|