PlayerAndroid/app/src/main/res/layout/activity_about.xml

44 lines
1.7 KiB
XML
Raw Normal View History

2018-07-27 13:07:33 +00:00
<?xml version="1.0" encoding="utf-8"?>
2018-08-30 09:29:30 +00:00
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
2018-08-08 08:03:38 +00:00
xmlns:app="http://schemas.android.com/apk/res-auto"
2018-08-30 09:29:30 +00:00
xmlns:tools="http://schemas.android.com/tools"
2018-08-08 08:03:38 +00:00
android:id="@+id/root"
2018-08-05 16:35:09 +00:00
android:layout_width="match_parent"
2018-08-08 08:03:38 +00:00
android:layout_height="match_parent">
2018-08-30 09:29:30 +00:00
<com.google.android.material.appbar.AppBarLayout
2018-08-08 08:03:38 +00:00
android:id="@+id/app_bar"
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
2018-08-08 08:03:38 +00:00
android:layout_height="wrap_content"
android:elevation="0dp"
app:elevation="0dp">
2018-08-30 09:29:30 +00:00
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
style="@style/Toolbar48"
app:layout_collapseMode="pin">
<TextView
android:id="@+id/title"
fontPath="@string/circular_std_black"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:gravity="center"
android:text="@string/action_about"
android:textAppearance="@style/TextAppearance.AppCompat.Large"
tools:ignore="MissingPrefix" />
</androidx.appcompat.widget.Toolbar>
</com.google.android.material.appbar.AppBarLayout>
<androidx.core.widget.NestedScrollView
2018-08-08 08:03:38 +00:00
android:layout_width="match_parent"
android:layout_height="match_parent"
2018-08-30 09:29:30 +00:00
android:elevation="@dimen/card_elevation"
2018-08-08 08:03:38 +00:00
app:layout_behavior="@string/appbar_scrolling_view_behavior">
2018-07-27 13:07:33 +00:00
2018-08-08 08:03:38 +00:00
<include layout="@layout/activity_about_content" />
2018-07-27 13:07:33 +00:00
2018-08-30 09:29:30 +00:00
</androidx.core.widget.NestedScrollView>
</androidx.coordinatorlayout.widget.CoordinatorLayout>