mirror of
https://github.com/nextcloud/android.git
synced 2024-12-21 08:24:08 +03:00
fix ui
Signed-off-by: alperozturk <alper_ozturk@proton.me>
This commit is contained in:
parent
3f68abe00b
commit
a94975711d
3 changed files with 26 additions and 17 deletions
|
@ -4,16 +4,10 @@
|
|||
~ SPDX-FileCopyrightText: 2018-2024 Google LLC
|
||||
~ SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:tint="#000000"
|
||||
android:viewportWidth="24"
|
||||
android:viewportHeight="24">
|
||||
|
||||
<path
|
||||
android:fillColor="@android:color/white"
|
||||
android:pathData="M12,2C6.47,2 2,6.47 2,12s4.47,10 10,10 10,-4.47 10,-10S17.53,2 12,2z" />
|
||||
|
||||
</vector>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="oval">
|
||||
<solid android:color="@color/bg_default" />
|
||||
<stroke
|
||||
android:width="1dp"
|
||||
android:color="@color/text_color" />
|
||||
</shape>
|
||||
|
|
|
@ -8,7 +8,6 @@
|
|||
~ SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only
|
||||
-->
|
||||
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
android:id="@+id/headerView"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
|
@ -61,6 +60,19 @@
|
|||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/all_files_title"
|
||||
android:text="@string/drawer_item_all_files"
|
||||
android:textSize="@dimen/large_title_text_size"
|
||||
android:gravity="center|start"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:paddingLeft="@dimen/standard_padding"
|
||||
android:paddingTop="@dimen/standard_double_padding"
|
||||
android:paddingRight="@dimen/standard_padding"
|
||||
android:paddingBottom="@dimen/zero"
|
||||
android:textColor="@color/text_color" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
</FrameLayout>
|
||||
|
|
|
@ -30,11 +30,14 @@
|
|||
<ImageButton
|
||||
android:id="@+id/more_action"
|
||||
android:src="@drawable/ic_dots_horizontal"
|
||||
android:contentDescription="@string/preview_image_description"
|
||||
android:background="@drawable/ic_circle"
|
||||
android:scaleType="centerInside"
|
||||
app:tint="@color/text_color"
|
||||
android:contentDescription="@string/preview_image_description"
|
||||
android:layout_gravity="top|end"
|
||||
android:layout_width="@dimen/more_icon_size"
|
||||
android:layout_height="@dimen/more_icon_size"/>
|
||||
android:padding="@dimen/standard_eight_padding"
|
||||
android:layout_width="@dimen/activity_icon_radius"
|
||||
android:layout_height="@dimen/activity_icon_radius"/>
|
||||
|
||||
<com.elyeproj.loaderviewlibrary.LoaderImageView
|
||||
app:corners="24"
|
||||
|
|
Loading…
Reference in a new issue