|
@@ -4,124 +4,163 @@
|
|
|
android:id="@+id/aboutfrag"
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="match_parent"
|
|
|
+ android:descendantFocusability="blocksDescendants"
|
|
|
tools:context=".fragments.AboutFragment">
|
|
|
|
|
|
-
|
|
|
- <LinearLayout
|
|
|
+ <androidx.core.widget.NestedScrollView
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:orientation="vertical">
|
|
|
+ android:layout_height="wrap_content">
|
|
|
|
|
|
- <TextView
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_gravity="center"
|
|
|
- android:fontFamily="@font/unifrakturcook"
|
|
|
- android:text="@string/logo"
|
|
|
- android:textColor="@color/textColor"
|
|
|
- android:textSize="80sp" />
|
|
|
|
|
|
- <TextView
|
|
|
+ <LinearLayout
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:layout_margin="10dp"
|
|
|
- android:text="@string/appDesc"
|
|
|
- android:textColor="@color/textColor"
|
|
|
- android:textSize="20sp" />
|
|
|
+ android:orientation="vertical">
|
|
|
|
|
|
- <TextView
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_gravity="center"
|
|
|
- android:text="@string/credits"
|
|
|
- android:textColor="@color/textColor"
|
|
|
- android:textSize="25sp"
|
|
|
- android:textStyle="bold" />
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:fontFamily="@font/unifrakturcook"
|
|
|
+ android:text="@string/logo"
|
|
|
+ android:textColor="@color/textColor"
|
|
|
+ android:textSize="80sp" />
|
|
|
|
|
|
- <LinearLayout
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="match_parent"
|
|
|
- android:layout_gravity="center"
|
|
|
- android:layout_margin="10dp"
|
|
|
- android:orientation="horizontal">
|
|
|
+ <TextView
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:layout_margin="10dp"
|
|
|
+ android:text="@string/appDesc"
|
|
|
+ android:textColor="@color/textColor"
|
|
|
+ android:textSize="20sp" />
|
|
|
|
|
|
<TextView
|
|
|
android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:padding="5dp"
|
|
|
+ android:layout_gravity="center"
|
|
|
android:text="@string/created"
|
|
|
android:textColor="@color/textColor"
|
|
|
- android:textSize="20sp" />
|
|
|
+ android:textSize="25sp" />
|
|
|
|
|
|
- <ImageView
|
|
|
- android:layout_width="wrap_content"
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:padding="2dp"
|
|
|
- android:src="@drawable/ic_gihub" />
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/git"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:padding="2dp"
|
|
|
+ android:src="@drawable/ic_gihub" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/dev"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:padding="5dp"
|
|
|
+ android:text="@string/dev"
|
|
|
+ android:textColor="@color/colorPrimary"
|
|
|
+ android:textSize="22sp" />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
|
|
|
<TextView
|
|
|
android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
|
android:layout_gravity="center"
|
|
|
- android:padding="5dp"
|
|
|
- android:text="@string/dev"
|
|
|
+ android:text="@string/powered"
|
|
|
android:textColor="@color/textColor"
|
|
|
- android:textSize="20sp" />
|
|
|
+ android:textSize="25sp"
|
|
|
+ android:textStyle="bold" />
|
|
|
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:layout_margin="10dp">
|
|
|
|
|
|
- </LinearLayout>
|
|
|
+ <TextView
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="@string/technoFaq"
|
|
|
+ android:textColor="@color/textColor"
|
|
|
+ android:textSize="22sp" />
|
|
|
|
|
|
- <TextView
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_gravity="center"
|
|
|
- android:text="@string/powered"
|
|
|
- android:textColor="@color/textColor"
|
|
|
- android:textSize="25sp"
|
|
|
- android:textStyle="bold" />
|
|
|
|
|
|
- <LinearLayout
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_gravity="center"
|
|
|
- android:layout_margin="10dp">
|
|
|
+ </LinearLayout>
|
|
|
|
|
|
<TextView
|
|
|
- android:layout_width="match_parent"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:text="@string/technoFaq"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:text="@string/community"
|
|
|
android:textColor="@color/textColor"
|
|
|
- android:textSize="22sp" />
|
|
|
+ android:textSize="25sp"
|
|
|
+ android:textStyle="bold" />
|
|
|
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:layout_margin="10dp"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/bn"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginBottom="5dp"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="@string/bn"
|
|
|
+ android:textColor="@color/colorPrimary"
|
|
|
+ android:textSize="22sp" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/international"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="@string/international"
|
|
|
+ android:textColor="@color/colorPrimary"
|
|
|
+ android:textSize="22sp" />
|
|
|
+
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
|
|
|
- </LinearLayout>
|
|
|
-
|
|
|
- <TextView
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_gravity="center"
|
|
|
- android:text="@string/thanks"
|
|
|
- android:textColor="@color/textColor"
|
|
|
- android:textSize="25sp"
|
|
|
- android:textStyle="bold" />
|
|
|
-
|
|
|
- <LinearLayout
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="match_parent"
|
|
|
- android:layout_margin="10dp"
|
|
|
- android:orientation="vertical">
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:text="@string/thanks"
|
|
|
+ android:textColor="@color/textColor"
|
|
|
+ android:textSize="25sp"
|
|
|
+ android:textStyle="bold" />
|
|
|
|
|
|
- <ListView
|
|
|
- android:id="@+id/aboutLV"
|
|
|
+ <LinearLayout
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_gravity="center" />
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:layout_margin="10dp"
|
|
|
+ android:orientation="vertical">
|
|
|
|
|
|
+ <androidx.recyclerview.widget.RecyclerView
|
|
|
+ android:id="@+id/aboutRV"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content" />
|
|
|
|
|
|
- </LinearLayout>
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
|
|
|
|
|
|
- </LinearLayout>
|
|
|
+ </LinearLayout>
|
|
|
+ </androidx.core.widget.NestedScrollView>
|
|
|
|
|
|
|
|
|
</FrameLayout>
|