|
@@ -40,9 +40,96 @@
|
|
|
android:windowContentOverlay="@null"
|
|
|
app:elevation="0dp">
|
|
|
|
|
|
- <include
|
|
|
- layout="@layout/search_layout"
|
|
|
- app:layout_behavior="@string/appbar_scrolling_view_behavior" />
|
|
|
+ <com.google.android.material.card.MaterialCardView
|
|
|
+ android:id="@+id/search_toolbar"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="50dp"
|
|
|
+ android:layout_marginStart="16dp"
|
|
|
+ android:layout_marginTop="5dp"
|
|
|
+ android:layout_marginEnd="16dp"
|
|
|
+ android:layout_marginBottom="1dp"
|
|
|
+ android:visibility="gone"
|
|
|
+ app:cardCornerRadius="8dp"
|
|
|
+ app:cardElevation="2dp"
|
|
|
+ app:strokeWidth="0dp"
|
|
|
+ tools:visibility="visible">
|
|
|
+
|
|
|
+ <androidx.constraintlayout.widget.ConstraintLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent">
|
|
|
+
|
|
|
+ <com.google.android.material.button.MaterialButton
|
|
|
+ android:id="@+id/menu_button"
|
|
|
+ style="@style/Widget.AppTheme.Button.IconButton"
|
|
|
+ android:layout_width="3dp"
|
|
|
+ android:layout_height="1dp"
|
|
|
+ android:layout_marginStart="5dp"
|
|
|
+ android:contentDescription="@string/nc_action_open_main_menu"
|
|
|
+ android:visibility="gone"
|
|
|
+ app:cornerRadius="@dimen/button_corner_radius"
|
|
|
+ app:icon="@drawable/ic_menu"
|
|
|
+ app:iconTint="@color/fontAppbar"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent" />
|
|
|
+
|
|
|
+ <com.google.android.material.textview.MaterialTextView
|
|
|
+ android:id="@+id/search_text"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="48dp"
|
|
|
+ android:layout_marginStart="13dp"
|
|
|
+ android:layout_marginEnd="18dp"
|
|
|
+ android:ellipsize="end"
|
|
|
+ android:gravity="start|center_vertical"
|
|
|
+ android:lines="1"
|
|
|
+ android:textColor="@color/fontSecondaryAppbar"
|
|
|
+ android:textSize="16sp"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintLeft_toRightOf="@id/menu_button"
|
|
|
+ app:layout_constraintRight_toLeftOf="@id/rightContainer"
|
|
|
+ app:layout_constraintTop_toTopOf="parent"
|
|
|
+ tools:text="Search in Nextcloud" />
|
|
|
+
|
|
|
+ <FrameLayout
|
|
|
+ android:id="@+id/rightContainer"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_alignParentEnd="true"
|
|
|
+ android:minWidth="48dp"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent">
|
|
|
+
|
|
|
+ <com.google.android.material.button.MaterialButton
|
|
|
+ android:id="@+id/switch_account_button"
|
|
|
+ style="@style/Widget.AppTheme.Button.IconButton"
|
|
|
+ android:layout_width="48dp"
|
|
|
+ android:layout_height="48dp"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:contentDescription="@string/nc_settings"
|
|
|
+ android:scaleType="fitCenter"
|
|
|
+ android:transitionName="userAvatar.transitionTag"
|
|
|
+ app:cornerRadius="@dimen/button_corner_radius"
|
|
|
+ app:iconSize="@dimen/avatar_size_app_bar"
|
|
|
+ tools:visibility="gone" />
|
|
|
+
|
|
|
+ <ProgressBar
|
|
|
+ android:id="@+id/searchProgressBar"
|
|
|
+ android:layout_width="32dp"
|
|
|
+ android:layout_height="32dp"
|
|
|
+ android:padding="4dp"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:indeterminate="true"
|
|
|
+ android:indeterminateTint="@color/colorPrimary"
|
|
|
+ android:scaleType="fitCenter"
|
|
|
+ android:visibility="gone" />
|
|
|
+
|
|
|
+ </FrameLayout>
|
|
|
+
|
|
|
+ </androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
+
|
|
|
+ </com.google.android.material.card.MaterialCardView>
|
|
|
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
|
|
android:id="@+id/toolbar"
|