2020-09-25 16:46:01 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
|
|
|
<ScrollView 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:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
tools:context=".AboutActivity">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/imageView"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="24dp"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
app:srcCompat="@drawable/ic_fred_phone" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/aboutAppName"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="11dp"
|
2020-09-25 17:00:08 +02:00
|
|
|
android:text="@string/app_name"
|
2020-09-25 16:46:01 +02:00
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Large"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/imageView" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/aboutVersionNumber"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="16dp"
|
|
|
|
android:textStyle="bold"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2020-09-25 17:00:08 +02:00
|
|
|
app:layout_constraintTop_toBottomOf="@+id/aboutAppName"
|
|
|
|
tools:text="v1.0.realversion" />
|
2020-09-25 16:46:01 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/aboutAppDescription"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
android:layout_marginTop="16dp"
|
|
|
|
android:layout_marginEnd="16dp"
|
2020-09-25 17:00:08 +02:00
|
|
|
android:text="@string/license_info"
|
2020-09-25 16:46:01 +02:00
|
|
|
android:textAlignment="center"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/aboutVersionNumber" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/aboutWebsite"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="16dp"
|
|
|
|
android:autoLink="web"
|
2020-09-25 17:00:08 +02:00
|
|
|
android:text="@string/project_website"
|
2020-09-25 16:46:01 +02:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/aboutAppDescription" />
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/licensesButton"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_margin="16dp"
|
2020-09-25 17:00:08 +02:00
|
|
|
android:text="@string/dependencies_licenses"
|
2020-09-25 16:46:01 +02:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/aboutWebsite" />
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
|
|
|
|
</ScrollView>
|