LibreTube/app/src/main/res/layout/fragment_about.xml

144 lines
4.8 KiB
XML
Raw Normal View History

2022-06-07 19:22:10 +05:30
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
2022-06-07 19:29:02 +05:30
<ImageView
style="@style/roundedImageViewRounded"
android:layout_width="80dp"
android:layout_height="80dp"
android:layout_gravity="center"
android:layout_marginTop="30dp"
2022-06-07 19:29:02 +05:30
android:src="@mipmap/ic_launcher" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginTop="20dp"
android:text="LibreTube"
android:textSize="27sp"
android:textStyle="bold" />
<TextView
android:id="@+id/app_version"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginTop="5dp"
android:layout_marginBottom="30dp"
android:textSize="18sp" />
2022-06-07 19:22:10 +05:30
2022-06-09 13:32:34 +05:30
<LinearLayout
2022-06-07 19:29:02 +05:30
android:id="@+id/website"
2022-06-07 19:22:10 +05:30
android:layout_width="match_parent"
android:layout_height="wrap_content"
2022-06-09 13:32:34 +05:30
android:orientation="vertical"
android:paddingHorizontal="20dp"
android:paddingVertical="10dp">
2022-06-07 19:22:10 +05:30
2022-06-09 13:32:34 +05:30
<TextView
2022-06-07 19:22:10 +05:30
android:layout_width="match_parent"
2022-06-09 13:32:34 +05:30
android:layout_height="match_parent"
android:text="@string/website"
android:textStyle="bold" />
2022-06-07 19:29:02 +05:30
2022-06-09 13:32:34 +05:30
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="@string/website_summary" />
2022-06-07 19:29:02 +05:30
2022-06-09 13:32:34 +05:30
</LinearLayout>
2022-06-07 19:29:02 +05:30
2022-06-09 13:32:34 +05:30
<LinearLayout
2022-06-07 19:29:02 +05:30
android:id="@+id/contributing"
2022-06-07 19:22:10 +05:30
android:layout_width="match_parent"
android:layout_height="wrap_content"
2022-06-09 13:32:34 +05:30
android:orientation="vertical"
android:paddingHorizontal="20dp"
android:paddingVertical="10dp">
2022-06-09 13:32:34 +05:30
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="@string/contributing"
android:textStyle="bold" />
2022-06-07 19:22:10 +05:30
2022-06-09 13:32:34 +05:30
<TextView
2022-06-07 19:22:10 +05:30
android:layout_width="match_parent"
2022-06-09 13:32:34 +05:30
android:layout_height="match_parent"
android:text="@string/contributing_summary" />
2022-06-07 19:29:02 +05:30
2022-06-09 13:32:34 +05:30
</LinearLayout>
2022-06-07 19:29:02 +05:30
2022-06-09 13:32:34 +05:30
<LinearLayout
android:id="@+id/authors"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:paddingHorizontal="20dp"
android:paddingVertical="10dp">
2022-06-07 19:29:02 +05:30
2022-06-09 13:32:34 +05:30
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="@string/authors"
android:textStyle="bold" />
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="@string/authors_summary" />
2022-06-07 19:29:02 +05:30
2022-06-09 13:32:34 +05:30
</LinearLayout>
2022-06-07 19:29:02 +05:30
2022-06-09 13:32:34 +05:30
<LinearLayout
2022-06-07 19:29:02 +05:30
android:id="@+id/donate"
2022-06-07 19:22:10 +05:30
android:layout_width="match_parent"
android:layout_height="wrap_content"
2022-06-09 13:32:34 +05:30
android:orientation="vertical"
android:paddingHorizontal="20dp"
android:paddingVertical="10dp">
2022-06-07 19:22:10 +05:30
2022-06-09 13:32:34 +05:30
<TextView
2022-06-07 19:22:10 +05:30
android:layout_width="match_parent"
2022-06-09 13:32:34 +05:30
android:layout_height="match_parent"
android:text="@string/donate"
android:textStyle="bold" />
2022-06-07 19:29:02 +05:30
2022-06-09 13:32:34 +05:30
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="@string/donate_summary" />
2022-06-07 19:29:02 +05:30
2022-06-09 13:32:34 +05:30
</LinearLayout>
2022-06-07 19:29:02 +05:30
2022-06-09 13:32:34 +05:30
<LinearLayout
2022-06-07 19:29:02 +05:30
android:id="@+id/license"
2022-06-07 19:22:10 +05:30
android:layout_width="match_parent"
android:layout_height="wrap_content"
2022-06-09 13:32:34 +05:30
android:orientation="vertical"
android:paddingHorizontal="20dp"
android:paddingVertical="10dp">
2022-06-07 19:22:10 +05:30
2022-06-09 13:32:34 +05:30
<TextView
2022-06-07 19:22:10 +05:30
android:layout_width="match_parent"
2022-06-09 13:32:34 +05:30
android:layout_height="match_parent"
android:text="@string/license"
android:textStyle="bold" />
2022-06-07 19:29:02 +05:30
2022-06-09 13:32:34 +05:30
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="@string/license_summary" />
2022-06-07 19:29:02 +05:30
2022-06-09 13:32:34 +05:30
</LinearLayout>
2022-06-07 19:29:02 +05:30
2022-06-07 19:22:10 +05:30
</LinearLayout>
</ScrollView>