Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/stefan-niedermann/nextcloud-notes.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Niedermann <info@niedermann.it>2020-06-07 11:55:29 +0300
committerStefan Niedermann <info@niedermann.it>2020-06-07 11:55:29 +0300
commit83f1e06c0f26164e90d74491fc6a5d6772d12efe (patch)
treecba0f232ea66a28b7bff14aaee985e5a71f537ec /app/src/main/res/layout/activity_about.xml
parentc872320b9b530cd7a32af80904ba8bd3455a77f6 (diff)
parentced0e1a0ecbfb73fa1c4a775951d37d1cd3277ff (diff)
Merge branch 'master' into api-v1
# Conflicts: # app/src/main/java/it/niedermann/owncloud/notes/android/fragment/BaseNoteFragment.java # app/src/main/res/values/strings.xml
Diffstat (limited to 'app/src/main/res/layout/activity_about.xml')
-rw-r--r--app/src/main/res/layout/activity_about.xml40
1 files changed, 23 insertions, 17 deletions
diff --git a/app/src/main/res/layout/activity_about.xml b/app/src/main/res/layout/activity_about.xml
index 3aac5851..8e6c0a2f 100644
--- a/app/src/main/res/layout/activity_about.xml
+++ b/app/src/main/res/layout/activity_about.xml
@@ -1,31 +1,37 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
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"
android:orientation="vertical">
- <androidx.appcompat.widget.Toolbar
- android:id="@+id/toolbar"
+ <com.google.android.material.appbar.AppBarLayout
android:layout_width="match_parent"
- android:layout_height="?attr/actionBarSize"
- android:background="?attr/colorPrimary"
- android:theme="@style/toolbarStyle"
- app:contentInsetStartWithNavigation="0dp"
- app:elevation="4dp"
- app:navigationIcon="@drawable/ic_arrow_back_white_24dp"
- app:titleMarginStart="0dp"
- tools:title="@string/simple_about" />
+ android:layout_height="wrap_content">
- <com.google.android.material.tabs.TabLayout
- android:id="@+id/tabs"
- android:layout_width="match_parent"
- android:layout_height="wrap_content" />
+ <androidx.appcompat.widget.Toolbar
+ android:id="@+id/toolbar"
+ android:layout_width="match_parent"
+ android:layout_height="?attr/actionBarSize"
+ android:background="?attr/colorPrimary"
+ app:contentInsetStartWithNavigation="0dp"
+ app:navigationIcon="@drawable/ic_arrow_back_grey600_24dp"
+ app:titleMarginStart="0dp"
+ tools:title="@string/simple_about" />
+
+ <com.google.android.material.tabs.TabLayout
+ android:id="@+id/tabs"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ app:tabIndicatorColor="@color/defaultBrand"
+ android:background="?attr/colorPrimary" />
+ </com.google.android.material.appbar.AppBarLayout>
<androidx.viewpager.widget.ViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
- android:layout_height="wrap_content" />
+ android:layout_height="wrap_content"
+ android:background="?attr/colorPrimary" />
</LinearLayout> \ No newline at end of file