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

164 lines
5.4 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"
2022-07-03 18:13:29 +05:30
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto">
2022-06-07 19:22:10 +05:30
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
2022-07-03 18:13:29 +05:30
<com.google.android.material.imageview.ShapeableImageView
app:shapeAppearanceOverlay="@style/CircleImageView"
2022-06-07 19:29:02 +05:30
android:layout_width="80dp"
android:layout_height="80dp"
android:layout_gravity="center"
android:layout_marginTop="30dp"
2022-07-03 18:13:29 +05:30
android:src="@mipmap/ic_launcher_round" />
2022-06-07 19:29:02 +05:30
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginTop="20dp"
2022-06-19 02:48:36 +05:30
android:layout_marginBottom="20dp"
2022-06-07 19:29:02 +05:30
android:text="LibreTube"
android:textSize="27sp"
android:textStyle="bold" />
2022-07-03 18:13:29 +05:30
<com.google.android.material.card.MaterialCardView
2022-06-07 19:29:02 +05:30
android:id="@+id/website"
2022-07-03 18:13:29 +05:30
style="@style/AboutCard">
2022-06-07 19:22:10 +05:30
2022-07-03 18:13:29 +05:30
<LinearLayout
style="@style/AboutItem">
2022-06-07 19:29:02 +05:30
2022-07-03 18:13:29 +05:30
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="@string/website"
android:textStyle="bold" />
2022-06-07 19:29:02 +05:30
2022-07-03 18:13:29 +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-07-03 18:13:29 +05:30
</LinearLayout>
</com.google.android.material.card.MaterialCardView>
<com.google.android.material.card.MaterialCardView
2022-06-07 19:29:02 +05:30
android:id="@+id/contributing"
2022-07-03 18:13:29 +05:30
style="@style/AboutCard">
<LinearLayout
style="@style/AboutItem">
2022-06-09 13:32:34 +05:30
2022-07-03 18:13:29 +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-07-03 18:13:29 +05:30
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="@string/contributing_summary" />
2022-06-07 19:29:02 +05:30
2022-07-03 18:13:29 +05:30
</LinearLayout>
2022-06-07 19:29:02 +05:30
2022-07-03 18:13:29 +05:30
</com.google.android.material.card.MaterialCardView>
<com.google.android.material.card.MaterialCardView
2022-06-09 13:32:34 +05:30
android:id="@+id/authors"
2022-07-03 18:13:29 +05:30
style="@style/AboutCard">
<LinearLayout
style="@style/AboutItem">
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="@string/authors"
android:textStyle="bold" />
2022-06-07 19:29:02 +05:30
2022-07-03 18:13:29 +05:30
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="@string/authors_summary" />
2022-06-09 13:32:34 +05:30
2022-07-03 18:13:29 +05:30
</LinearLayout>
2022-06-07 19:29:02 +05:30
2022-07-03 18:13:29 +05:30
</com.google.android.material.card.MaterialCardView>
2022-06-07 19:29:02 +05:30
2022-07-03 18:13:29 +05:30
<com.google.android.material.card.MaterialCardView
2022-06-19 01:47:47 +05:30
android:id="@+id/piped"
2022-07-03 18:13:29 +05:30
style="@style/AboutCard">
2022-06-19 01:47:47 +05:30
2022-07-03 18:13:29 +05:30
<LinearLayout
style="@style/AboutItem">
2022-06-19 01:47:47 +05:30
2022-07-03 18:13:29 +05:30
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="@string/piped"
android:textStyle="bold" />
2022-06-19 01:47:47 +05:30
2022-07-03 18:13:29 +05:30
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="@string/piped_summary" />
2022-06-19 01:47:47 +05:30
2022-07-03 18:13:29 +05:30
</LinearLayout>
</com.google.android.material.card.MaterialCardView>
<com.google.android.material.card.MaterialCardView
2022-06-07 19:29:02 +05:30
android:id="@+id/donate"
2022-07-03 18:13:29 +05:30
style="@style/AboutCard">
<LinearLayout
style="@style/AboutItem">
2022-06-07 19:22:10 +05:30
2022-07-03 18:13:29 +05:30
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="@string/donate"
android:textStyle="bold" />
2022-06-07 19:29:02 +05:30
2022-07-03 18:13:29 +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-07-03 18:13:29 +05:30
</LinearLayout>
2022-06-07 19:29:02 +05:30
2022-07-03 18:13:29 +05:30
</com.google.android.material.card.MaterialCardView>
<com.google.android.material.card.MaterialCardView
2022-06-07 19:29:02 +05:30
android:id="@+id/license"
2022-07-03 18:13:29 +05:30
style="@style/AboutCard">
<LinearLayout
style="@style/AboutItem">
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="@string/license"
android:textStyle="bold" />
2022-06-07 19:22:10 +05:30
2022-07-03 18:13:29 +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-07-03 18:13:29 +05:30
</LinearLayout>
2022-06-07 19:29:02 +05:30
2022-07-03 18:13:29 +05:30
</com.google.android.material.card.MaterialCardView>
2022-06-07 19:29:02 +05:30
2022-06-07 19:22:10 +05:30
</LinearLayout>
</ScrollView>