mirror of
https://github.com/MaintainTeam/LastPipeBender.git
synced 2025-03-04 15:28:21 +03:00
95 lines
3.7 KiB
XML
95 lines
3.7 KiB
XML
<android.support.v4.widget.NestedScrollView
|
|
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:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:context="org.schabi.newpipe.about.AboutActivity$AboutFragment">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:paddingBottom="@dimen/activity_vertical_margin"
|
|
android:paddingLeft="@dimen/activity_horizontal_margin"
|
|
android:paddingRight="@dimen/activity_horizontal_margin"
|
|
android:paddingTop="@dimen/activity_vertical_margin">
|
|
|
|
<ImageView
|
|
android:id="@+id/logo"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_marginBottom="8dp"
|
|
app:srcCompat="@mipmap/ic_launcher" />
|
|
|
|
<TextView
|
|
android:id="@+id/app_name"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:text="@string/app_name"
|
|
android:textAppearance="@android:style/TextAppearance.Large" />
|
|
|
|
|
|
<TextView
|
|
android:id="@+id/app_version"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_marginBottom="16dp"
|
|
android:textAppearance="@android:style/TextAppearance.Medium"
|
|
tools:text="0.9.9" />
|
|
|
|
<TextView
|
|
android:id="@+id/app_description"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/app_description" />
|
|
|
|
<TextView
|
|
android:id="@+id/title_contribution"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingTop="10dp"
|
|
android:text="@string/contribution_title"
|
|
android:textAppearance="@android:style/TextAppearance.Medium" />
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/contribution_encouragement" />
|
|
|
|
|
|
<Button
|
|
android:id="@+id/github_link"
|
|
style="@style/Base.Widget.AppCompat.Button.Borderless"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="end"
|
|
android:text="@string/view_on_github" />
|
|
|
|
<TextView
|
|
android:id="@+id/app_license_title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingTop="10dp"
|
|
android:text="@string/app_license_title"
|
|
android:textAppearance="@android:style/TextAppearance.Medium" />
|
|
|
|
<TextView
|
|
android:id="@+id/app_license"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/app_license" />
|
|
|
|
<Button
|
|
android:id="@+id/app_read_license"
|
|
style="@style/Base.Widget.AppCompat.Button.Borderless"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="end"
|
|
android:text="@string/read_full_license" />
|
|
|
|
</LinearLayout>
|
|
</android.support.v4.widget.NestedScrollView>
|