aboutsummaryrefslogtreecommitdiff
path: root/Client/BrzoDoLokacije/app/src/main/res/layout/activity_opened_images.xml
diff options
context:
space:
mode:
authorTAMARA JERINIC <tamara.jerinic@gmail.com>2022-12-09 21:58:37 +0100
committerTAMARA JERINIC <tamara.jerinic@gmail.com>2022-12-09 21:58:37 +0100
commit2be5fb31bdf9400d7419159c1d37bf25306b0741 (patch)
treee38e1f03a708fbd366b3b0c3a6f3b312233e55a1 /Client/BrzoDoLokacije/app/src/main/res/layout/activity_opened_images.xml
parentd776acefb2316f875b93dbe956253e160c003a58 (diff)
parent8da0efaf10d33e919aab0ae53e5117cc2dd02429 (diff)
Merge branch 'develop' of http://gitlab.pmf.kg.ac.rs/BrzoDoLokacije2022/odyssey/brzodolokacije into develop
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.xml45
1 files changed, 45 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..3a1fbbc
--- /dev/null
+++ b/Client/BrzoDoLokacije/app/src/main/res/layout/activity_opened_images.xml
@@ -0,0 +1,45 @@
+<?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:layout_width="50dp"
+ android:layout_height="50dp"
+ app:layout_constraintStart_toStartOf="parent"
+ android:background="@null"
+ android:src="@drawable/ic_baseline_arrow_back"
+ android:id="@+id/btnBackToPost"/>
+
+ <ImageButton
+ android:layout_width="50dp"
+ android:layout_height="50dp"
+ app:layout_constraintEnd_toEndOf="parent"
+ android:background="@null"
+ android:src="@drawable/ic_baseline_arrow_back"
+ android:id="@+id/btnDownload"/>
+ </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