mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-15 23:00:31 +05:30
205 lines
7.1 KiB
XML
205 lines
7.1 KiB
XML
|
<?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"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent">
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<ImageView
|
||
|
style="@style/roundedImageViewRounded"
|
||
|
android:layout_width="80dp"
|
||
|
android:layout_height="80dp"
|
||
|
android:layout_gravity="center"
|
||
|
android:layout_marginTop="100dp"
|
||
|
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" />
|
||
|
|
||
|
<com.google.android.material.card.MaterialCardView
|
||
|
android:id="@+id/website"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginHorizontal="10dp"
|
||
|
android:layout_marginBottom="16dp"
|
||
|
android:padding="20dp"
|
||
|
app:cardCornerRadius="16dp">
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:layout_marginHorizontal="20dp"
|
||
|
android:layout_marginTop="10dp"
|
||
|
android:text="@string/website"
|
||
|
android:textStyle="bold" />
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:layout_marginHorizontal="20dp"
|
||
|
android:layout_marginBottom="10dp"
|
||
|
android:text="@string/website_summary" />
|
||
|
|
||
|
</LinearLayout>
|
||
|
|
||
|
</com.google.android.material.card.MaterialCardView>
|
||
|
|
||
|
<com.google.android.material.card.MaterialCardView
|
||
|
android:id="@+id/contributing"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginHorizontal="10dp"
|
||
|
android:layout_marginBottom="16dp"
|
||
|
android:padding="20dp"
|
||
|
app:cardCornerRadius="16dp">
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:layout_marginHorizontal="20dp"
|
||
|
android:layout_marginTop="10dp"
|
||
|
android:text="@string/contributing"
|
||
|
android:textStyle="bold" />
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:layout_marginHorizontal="20dp"
|
||
|
android:layout_marginBottom="10dp"
|
||
|
android:text="@string/contributing_summary" />
|
||
|
|
||
|
</LinearLayout>
|
||
|
|
||
|
</com.google.android.material.card.MaterialCardView>
|
||
|
|
||
|
<com.google.android.material.card.MaterialCardView
|
||
|
android:id="@+id/donate"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginHorizontal="10dp"
|
||
|
android:layout_marginBottom="16dp"
|
||
|
android:padding="20dp"
|
||
|
app:cardCornerRadius="16dp">
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:layout_marginHorizontal="20dp"
|
||
|
android:layout_marginTop="10dp"
|
||
|
android:text="@string/donate"
|
||
|
android:textStyle="bold" />
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:layout_marginHorizontal="20dp"
|
||
|
android:layout_marginBottom="10dp"
|
||
|
android:text="@string/donate_summary" />
|
||
|
|
||
|
</LinearLayout>
|
||
|
|
||
|
</com.google.android.material.card.MaterialCardView>
|
||
|
|
||
|
<com.google.android.material.card.MaterialCardView
|
||
|
android:id="@+id/license"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginHorizontal="10dp"
|
||
|
android:layout_marginBottom="16dp"
|
||
|
android:padding="20dp"
|
||
|
app:cardCornerRadius="16dp">
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:layout_marginHorizontal="20dp"
|
||
|
android:layout_marginTop="10dp"
|
||
|
android:text="@string/license"
|
||
|
android:textStyle="bold" />
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:layout_marginHorizontal="20dp"
|
||
|
android:layout_marginBottom="10dp"
|
||
|
android:text="@string/license_summary" />
|
||
|
|
||
|
</LinearLayout>
|
||
|
|
||
|
</com.google.android.material.card.MaterialCardView>
|
||
|
|
||
|
<com.google.android.material.card.MaterialCardView
|
||
|
android:id="@+id/update"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginHorizontal="10dp"
|
||
|
android:layout_marginBottom="20dp"
|
||
|
android:padding="20dp"
|
||
|
app:cardCornerRadius="16dp">
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:layout_marginHorizontal="20dp"
|
||
|
android:layout_marginTop="10dp"
|
||
|
android:text="@string/update"
|
||
|
android:textStyle="bold" />
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:layout_marginHorizontal="20dp"
|
||
|
android:layout_marginBottom="10dp"
|
||
|
android:text="@string/update_summary" />
|
||
|
|
||
|
</LinearLayout>
|
||
|
|
||
|
</com.google.android.material.card.MaterialCardView>
|
||
|
|
||
|
</LinearLayout>
|
||
|
|
||
|
</ScrollView>
|