diff options
| author | Jelena Petrovic <jelenapetrovic.7119@gmail.com> | 2022-11-05 23:21:11 +0100 | 
|---|---|---|
| committer | Jelena Petrovic <jelenapetrovic.7119@gmail.com> | 2022-11-05 23:21:11 +0100 | 
| commit | 813c9ea0531300e6acb0add5ca8bb6bf9083ba41 (patch) | |
| tree | 816337747c3bf75d406b856cf3585707e52868e1 /Client/BrzoDoLokacije/app/src/main/res/layout | |
| parent | fddf235aaf67921c654757f22a63e1500f0b7bbd (diff) | |
| parent | 6e35afaee3e18d9c69e3ed90d0786f6b9d9dccb3 (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')
3 files changed, 102 insertions, 3 deletions
diff --git a/Client/BrzoDoLokacije/app/src/main/res/layout/fragment_add_location.xml b/Client/BrzoDoLokacije/app/src/main/res/layout/fragment_add_location.xml new file mode 100644 index 0000000..bfc1edb --- /dev/null +++ b/Client/BrzoDoLokacije/app/src/main/res/layout/fragment_add_location.xml @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="utf-8"?> +<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" +    xmlns:tools="http://schemas.android.com/tools" +    android:layout_width="match_parent" +    android:layout_height="match_parent" +    tools:context=".Fragments.FragmentAddLocation"> + +    <!-- TODO: Update blank fragment layout --> +    <TextView +        android:layout_width="match_parent" +        android:layout_height="match_parent" +        android:text="@string/hello_blank_fragment" /> + +</FrameLayout>
\ No newline at end of file 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 diff --git a/Client/BrzoDoLokacije/app/src/main/res/layout/fragment_my_profile_info.xml b/Client/BrzoDoLokacije/app/src/main/res/layout/fragment_my_profile_info.xml index d20c569..4a91f49 100644 --- a/Client/BrzoDoLokacije/app/src/main/res/layout/fragment_my_profile_info.xml +++ b/Client/BrzoDoLokacije/app/src/main/res/layout/fragment_my_profile_info.xml @@ -1,14 +1,30 @@  <?xml version="1.0" encoding="utf-8"?> -<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" +<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=".Fragments.FragmentMyProfileInfo">      <!-- TODO: Update blank fragment layout --> +      <TextView +        android:id="@+id/textView5"          android:layout_width="match_parent"          android:layout_height="match_parent" -        android:text="Moji podaci" /> +        android:text="Moji podaci" +        tools:layout_editor_absoluteX="0dp" +        tools:layout_editor_absoluteY="0dp" /> + +    <Button +        android:id="@+id/buttonLogOut" +        android:layout_width="wrap_content" +        android:layout_height="wrap_content" +        android:text="Log out" +        app:layout_constraintBottom_toBottomOf="@+id/textView5" +        app:layout_constraintEnd_toEndOf="@+id/textView5" +        app:layout_constraintStart_toStartOf="parent" +        app:layout_constraintTop_toTopOf="@+id/textView5" /> + -</FrameLayout>
\ No newline at end of file +</androidx.constraintlayout.widget.ConstraintLayout>
\ No newline at end of file  | 
