diff options
author | Ognjen Cirkovic <ciraboxkg@gmail.com> | 2022-12-13 14:42:43 +0000 |
---|---|---|
committer | Ognjen Cirkovic <ciraboxkg@gmail.com> | 2022-12-13 14:42:43 +0000 |
commit | e3b7055065d8ed49c4f5d5be277003bc18890166 (patch) | |
tree | dbbfce17cbb176aee04c92d0685a77f4b645afc3 /Client/BrzoDoLokacije/app/src/main/res/layout/activity_opened_images.xml | |
parent | 5a205c35d936728f76451109751e1fb5a9a75bd1 (diff) | |
parent | 61998e4a27b3ed6e42edefaac8b48cbf6b43c49d (diff) |
Merge develop-> master
Closes #83
See merge request BrzoDoLokacije2022/odyssey/brzodolokacije!11
Diffstat (limited to 'Client/BrzoDoLokacije/app/src/main/res/layout/activity_opened_images.xml')
-rw-r--r-- | Client/BrzoDoLokacije/app/src/main/res/layout/activity_opened_images.xml | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/Client/BrzoDoLokacije/app/src/main/res/layout/activity_opened_images.xml b/Client/BrzoDoLokacije/app/src/main/res/layout/activity_opened_images.xml new file mode 100644 index 0000000..53bed93 --- /dev/null +++ b/Client/BrzoDoLokacije/app/src/main/res/layout/activity_opened_images.xml @@ -0,0 +1,48 @@ +<?xml version="1.0" encoding="utf-8"?> +<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" + 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" + tools:context=".Activities.ActivityOpenedImages" + android:background="@color/design_default_color_background"> + <androidx.constraintlayout.widget.ConstraintLayout + android:layout_width="match_parent" + android:layout_height="50dp" + android:elevation="5dp" + app:layout_constraintTop_toTopOf="parent" + app:layout_constraintStart_toStartOf="parent" + android:background="@color/unfollow_transparent" + android:id="@+id/clImageHeader"> + + <ImageButton + android:id="@+id/btnBackToPost" + android:layout_width="50dp" + android:layout_height="50dp" + android:background="@null" + android:src="@drawable/ic_baseline_arrow_back" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toTopOf="parent" /> + + <ImageButton + android:id="@+id/btnDownload" + android:layout_width="50dp" + android:layout_height="50dp" + android:background="@null" + android:src="@drawable/ic_baseline_download_24" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintTop_toTopOf="parent" /> + </androidx.constraintlayout.widget.ConstraintLayout> + <androidx.appcompat.widget.LinearLayoutCompat + android:layout_width="match_parent" + android:layout_height="match_parent" + android:orientation="vertical" + android:id="@+id/rvParent"> + + <androidx.recyclerview.widget.RecyclerView + android:layout_width="match_parent" + android:layout_height="match_parent" + android:id="@+id/rvImages"/> + </androidx.appcompat.widget.LinearLayoutCompat> + +</androidx.constraintlayout.widget.ConstraintLayout>
\ No newline at end of file |