diff options
Diffstat (limited to 'Client/BrzoDoLokacije/app/src/main/res/layout/fragment_home.xml')
-rw-r--r-- | Client/BrzoDoLokacije/app/src/main/res/layout/fragment_home.xml | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/Client/BrzoDoLokacije/app/src/main/res/layout/fragment_home.xml b/Client/BrzoDoLokacije/app/src/main/res/layout/fragment_home.xml index 2395f65..f735bec 100644 --- a/Client/BrzoDoLokacije/app/src/main/res/layout/fragment_home.xml +++ b/Client/BrzoDoLokacije/app/src/main/res/layout/fragment_home.xml @@ -1,14 +1,16 @@ <?xml version="1.0" encoding="utf-8"?> <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" + xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".Fragments.FragmentHome"> - <!-- TODO: Update blank fragment layout --> - <TextView - android:layout_width="match_parent" + <androidx.recyclerview.widget.RecyclerView + android:id="@+id/rvMain" android:layout_height="match_parent" - android:text="@string/hello_blank_fragment" /> + android:layout_width="match_parent" + app:layout_constraintTop_toTopOf="parent" + app:layout_constraintStart_toStartOf="parent"/> </FrameLayout>
\ No newline at end of file |