|
|
@@ -1,45 +1,38 @@
|
|
|
-<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+<androidx.constraintlayout.widget.ConstraintLayout 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/aboutLayout"
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="match_parent"
|
|
|
tools:context="com.sduduzog.slimlauncher.ui.main.AboutFragment">
|
|
|
|
|
|
- <androidx.constraintlayout.widget.ConstraintLayout
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="wrap_content">
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/aboutVersionText"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="16dp"
|
|
|
+ android:layout_marginLeft="16dp"
|
|
|
+ android:layout_marginTop="32dp"
|
|
|
+ android:layout_marginEnd="16dp"
|
|
|
+ android:layout_marginRight="16dp"
|
|
|
+ android:text="@string/about_title"
|
|
|
+ android:textSize="24sp"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent"
|
|
|
+ tools:text="Slim launcher" />
|
|
|
|
|
|
- <TextView
|
|
|
- android:id="@+id/textView5"
|
|
|
- android:layout_width="0dp"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_marginStart="16dp"
|
|
|
- android:layout_marginLeft="16dp"
|
|
|
- android:layout_marginTop="32dp"
|
|
|
- android:layout_marginEnd="16dp"
|
|
|
- android:layout_marginRight="16dp"
|
|
|
- android:text="@string/about_title"
|
|
|
- android:textSize="36sp"
|
|
|
- app:layout_constraintEnd_toEndOf="parent"
|
|
|
- app:layout_constraintStart_toStartOf="parent"
|
|
|
- app:layout_constraintTop_toTopOf="parent"
|
|
|
- tools:text="Slim launcher" />
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/aboutDescriptionText"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="16dp"
|
|
|
+ android:layout_marginTop="24dp"
|
|
|
+ android:layout_marginEnd="16dp"
|
|
|
+ android:text="@string/about_text"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintHorizontal_bias="0.0"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/aboutVersionText" />
|
|
|
|
|
|
- <TextView
|
|
|
- android:id="@+id/aboutDescriptionText"
|
|
|
- android:layout_width="0dp"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_marginStart="16dp"
|
|
|
- android:layout_marginTop="8dp"
|
|
|
- android:layout_marginEnd="16dp"
|
|
|
- android:layout_marginBottom="8dp"
|
|
|
- android:text="@string/about_text"
|
|
|
- app:layout_constraintBottom_toBottomOf="parent"
|
|
|
- app:layout_constraintEnd_toEndOf="parent"
|
|
|
- app:layout_constraintStart_toStartOf="parent"
|
|
|
- app:layout_constraintTop_toBottomOf="@+id/textView5" />
|
|
|
|
|
|
-
|
|
|
- </androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
-</ScrollView>
|
|
|
+</androidx.constraintlayout.widget.ConstraintLayout>
|