mirror of
https://github.com/nextcloud/android.git
synced 2024-12-22 00:34:31 +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-FileCopyrightText: 2018-2024 Google LLC
|
||||||
~ SPDX-License-Identifier: Apache-2.0
|
~ SPDX-License-Identifier: Apache-2.0
|
||||||
-->
|
-->
|
||||||
|
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
android:shape="oval">
|
||||||
android:width="24dp"
|
<solid android:color="@color/bg_default" />
|
||||||
android:height="24dp"
|
<stroke
|
||||||
android:tint="#000000"
|
android:width="1dp"
|
||||||
android:viewportWidth="24"
|
android:color="@color/text_color" />
|
||||||
android:viewportHeight="24">
|
</shape>
|
||||||
|
|
||||||
<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>
|
|
||||||
|
|
|
@ -8,7 +8,6 @@
|
||||||
~ SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only
|
~ SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only
|
||||||
-->
|
-->
|
||||||
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
||||||
android:id="@+id/headerView"
|
android:id="@+id/headerView"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
|
@ -61,6 +60,19 @@
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"/>
|
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>
|
</LinearLayout>
|
||||||
|
|
||||||
</FrameLayout>
|
</FrameLayout>
|
||||||
|
|
|
@ -30,11 +30,14 @@
|
||||||
<ImageButton
|
<ImageButton
|
||||||
android:id="@+id/more_action"
|
android:id="@+id/more_action"
|
||||||
android:src="@drawable/ic_dots_horizontal"
|
android:src="@drawable/ic_dots_horizontal"
|
||||||
android:contentDescription="@string/preview_image_description"
|
|
||||||
android:background="@drawable/ic_circle"
|
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_gravity="top|end"
|
||||||
android:layout_width="@dimen/more_icon_size"
|
android:padding="@dimen/standard_eight_padding"
|
||||||
android:layout_height="@dimen/more_icon_size"/>
|
android:layout_width="@dimen/activity_icon_radius"
|
||||||
|
android:layout_height="@dimen/activity_icon_radius"/>
|
||||||
|
|
||||||
<com.elyeproj.loaderviewlibrary.LoaderImageView
|
<com.elyeproj.loaderviewlibrary.LoaderImageView
|
||||||
app:corners="24"
|
app:corners="24"
|
||||||
|
|
Loading…
Reference in a new issue