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-05 23:10:35 +0300
committerStefan Niedermann <info@niedermann.it>2020-06-05 23:10:35 +0300
commit3d5afce677122e2b33cb13b8ebd39808a1009ee5 (patch)
treeb295e70168b3fddbe33cd735049872f3500721cd /app/src/main/res/layout/dialog_account_switcher.xml
parent6e4cc2ae2ad413e1790eced216611427bf8641af (diff)
ManageAccountsActivity
Diffstat (limited to 'app/src/main/res/layout/dialog_account_switcher.xml')
-rw-r--r--app/src/main/res/layout/dialog_account_switcher.xml37
1 files changed, 36 insertions, 1 deletions
diff --git a/app/src/main/res/layout/dialog_account_switcher.xml b/app/src/main/res/layout/dialog_account_switcher.xml
index bf304b08..9f762af5 100644
--- a/app/src/main/res/layout/dialog_account_switcher.xml
+++ b/app/src/main/res/layout/dialog_account_switcher.xml
@@ -69,7 +69,6 @@
android:id="@+id/add_account"
android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:layout_marginBottom="@dimen/spacer_2x"
android:background="?attr/selectableItemBackground"
android:orientation="horizontal"
android:paddingStart="@dimen/spacer_3x"
@@ -100,5 +99,41 @@
android:textColor="?android:textColorPrimary" />
</LinearLayout>
+
+ <LinearLayout
+ android:id="@+id/manage_accounts"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_marginBottom="@dimen/spacer_2x"
+ android:background="?attr/selectableItemBackground"
+ android:orientation="horizontal"
+ android:paddingStart="@dimen/spacer_3x"
+ android:paddingLeft="@dimen/spacer_3x"
+ android:paddingTop="@dimen/spacer_1x"
+ android:paddingEnd="@dimen/spacer_3x"
+ android:paddingRight="@dimen/spacer_3x"
+ android:paddingBottom="@dimen/spacer_1x">
+
+ <androidx.appcompat.widget.AppCompatImageView
+ android:layout_width="36dp"
+ android:layout_height="36dp"
+ android:contentDescription="@null"
+ android:focusable="false"
+ android:scaleType="center"
+ app:srcCompat="@drawable/ic_settings_grey600_24dp" />
+
+ <TextView
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center"
+ android:layout_marginStart="16dp"
+ android:layout_marginLeft="16dp"
+ android:ellipsize="middle"
+ android:singleLine="true"
+ android:text="@string/manage_accounts"
+ android:textAppearance="@style/TextAppearance.AppCompat.Widget.TextView.SpinnerItem"
+ android:textColor="?android:textColorPrimary" />
+
+ </LinearLayout>
</LinearLayout>