diff options
author | Ognjen Cirkovic <ciraboxkg@gmail.com> | 2022-11-05 21:42:14 +0100 |
---|---|---|
committer | Ognjen Cirkovic <ciraboxkg@gmail.com> | 2022-11-05 21:42:14 +0100 |
commit | fb06b97b46f450ce1725948d8f3f451bd8be4f7d (patch) | |
tree | 6e8902537d6f2fcf4f04512910cc9b945b2f4930 /Client/BrzoDoLokacije/app/src/main/res/layout/fragment_add_new.xml | |
parent | 52c0f11dc1562ac1f8c1b33d5ed77371dbd27fc2 (diff) | |
parent | fb5f9f0b90eff107cf9b171a46e8ac53e633788f (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/fragment_add_new.xml')
-rw-r--r-- | Client/BrzoDoLokacije/app/src/main/res/layout/fragment_add_new.xml | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/Client/BrzoDoLokacije/app/src/main/res/layout/fragment_add_new.xml b/Client/BrzoDoLokacije/app/src/main/res/layout/fragment_add_new.xml new file mode 100644 index 0000000..5cfda04 --- /dev/null +++ b/Client/BrzoDoLokacije/app/src/main/res/layout/fragment_add_new.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?> +<FrameLayout 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=".Fragments.FragmentAddNew"> + + <!-- TODO: Update blank fragment layout --> + <TextView + android:layout_width="match_parent" + android:layout_height="match_parent" /> + <androidx.constraintlayout.widget.ConstraintLayout + android:layout_width="match_parent" + android:layout_height="match_parent"> + + <Button + android:id="@+id/btnFragmentAddNewNewLocation" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:backgroundTint="#FFFFFF" + android:stateListAnimator="@null" + android:text="Nova lokacija" + android:textColor="@color/cardview_dark_background" + app:layout_constraintBottom_toBottomOf="parent" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toEndOf="@+id/btnFragmentAddNewNewPost" + app:layout_constraintTop_toTopOf="parent" + app:layout_constraintVertical_bias="0.00999999" /> + + <Button + android:id="@+id/btnFragmentAddNewNewPost" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:backgroundTint="#FFFFFF" + android:stateListAnimator="@null" + + android:text="Nova objava" + android:textColor="@color/cardview_dark_background" + app:layout_constraintBottom_toBottomOf="parent" + app:layout_constraintEnd_toStartOf="@+id/btnFragmentAddNewNewLocation" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toTopOf="parent" + app:layout_constraintVertical_bias="0.00999999" /> + + <View + android:id="@+id/divider3" + android:layout_width="409dp" + android:layout_height="1dp" + android:background="?android:attr/listDivider" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toBottomOf="@+id/btnFragmentAddNewNewPost" /> + + <FrameLayout + android:id="@+id/flFragmentAddNewFragmentContainer" + android:layout_width="409dp" + android:layout_height="673dp" + app:layout_constraintBottom_toBottomOf="parent" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent"> + + </FrameLayout> + </androidx.constraintlayout.widget.ConstraintLayout> + + + + +</FrameLayout>
\ No newline at end of file |