diff options
author | Jelena Petrovic <jelenapetrovic.7119@gmail.com> | 2022-12-10 15:49:28 +0100 |
---|---|---|
committer | Jelena Petrovic <jelenapetrovic.7119@gmail.com> | 2022-12-10 15:49:28 +0100 |
commit | 339ee620e3e47f1b47f52af3d2ddb0d86dc9e031 (patch) | |
tree | 09b6374a0235f9b10f800c9e1f0240bbffe6ce2e /Client | |
parent | f286fd0ea6a7def13b26a0b27251ee9bcfbbc504 (diff) |
Sklonjeno dugme 'prati' u fragmentima za pratioce, prepravljena orijentacija liste korisnika na istim fragmentima #83
Diffstat (limited to 'Client')
3 files changed, 7 insertions, 20 deletions
diff --git a/Client/BrzoDoLokacije/app/src/main/res/layout/follower_item.xml b/Client/BrzoDoLokacije/app/src/main/res/layout/follower_item.xml index d0c6a2d..9285741 100644 --- a/Client/BrzoDoLokacije/app/src/main/res/layout/follower_item.xml +++ b/Client/BrzoDoLokacije/app/src/main/res/layout/follower_item.xml @@ -51,7 +51,7 @@ android:text="Petar Petrovic" android:textSize="17sp" android:textStyle="bold" - app:layout_constraintEnd_toStartOf="@+id/materialButton" + app:layout_constraintEnd_toEndOf="parent" app:layout_constraintHorizontal_bias="0.0" app:layout_constraintStart_toEndOf="@+id/cvFragmentHomePageProfile" app:layout_constraintTop_toTopOf="parent"> @@ -63,27 +63,12 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Petar Petrovic" + android:layout_marginStart="24dp" android:textSize="15sp" app:layout_constraintBottom_toBottomOf="parent" - app:layout_constraintEnd_toStartOf="@+id/materialButton" - app:layout_constraintHorizontal_bias="0.597" - app:layout_constraintStart_toStartOf="parent" + app:layout_constraintStart_toEndOf="@id/cvFragmentHomePageProfile" app:layout_constraintTop_toBottomOf="@+id/tvFollowerItemName" app:layout_constraintVertical_bias="0.0" /> - <ImageButton - - android:id="@+id/materialButton" - android:layout_width="101dp" - android:layout_height="39dp" - android:layout_marginEnd="16dp" - android:background="@drawable/rounded_transparent_button" - android:foreground="@drawable/button_follow" - app:layout_constraintBottom_toBottomOf="parent" - app:layout_constraintEnd_toEndOf="parent" - app:layout_constraintTop_toTopOf="parent" - app:layout_constraintVertical_bias="0.508" - tools:ignore="TouchTargetSizeCheck" /> - </androidx.constraintlayout.widget.ConstraintLayout> </androidx.constraintlayout.widget.ConstraintLayout>
\ No newline at end of file diff --git a/Client/BrzoDoLokacije/app/src/main/res/layout/fragment_followers.xml b/Client/BrzoDoLokacije/app/src/main/res/layout/fragment_followers.xml index 6092e01..073cd91 100644 --- a/Client/BrzoDoLokacije/app/src/main/res/layout/fragment_followers.xml +++ b/Client/BrzoDoLokacije/app/src/main/res/layout/fragment_followers.xml @@ -31,7 +31,8 @@ <androidx.recyclerview.widget.RecyclerView android:id="@+id/rvFragmentShowFollowers" android:layout_width="match_parent" - android:layout_height="match_parent" /> + android:layout_height="match_parent" + android:orientation="vertical"/> </LinearLayout> </FrameLayout>
\ No newline at end of file diff --git a/Client/BrzoDoLokacije/app/src/main/res/layout/fragment_following.xml b/Client/BrzoDoLokacije/app/src/main/res/layout/fragment_following.xml index 424094f..a673bd5 100644 --- a/Client/BrzoDoLokacije/app/src/main/res/layout/fragment_following.xml +++ b/Client/BrzoDoLokacije/app/src/main/res/layout/fragment_following.xml @@ -31,7 +31,8 @@ <androidx.recyclerview.widget.RecyclerView android:id="@+id/rvFragmentShowFollowing" android:layout_width="match_parent" - android:layout_height="match_parent" /> + android:layout_height="match_parent" + android:orientation="vertical"/> </LinearLayout> </FrameLayout>
\ No newline at end of file |