|
@ -1,14 +1,21 @@ |
|
|
<?xml version="1.0" encoding="utf-8"?> |
|
|
<?xml version="1.0" encoding="utf-8"?> |
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
|
|
|
|
|
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout 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" |
|
|
xmlns:tools="http://schemas.android.com/tools" |
|
|
android:id="@+id/feedLayout" |
|
|
android:id="@+id/feedLayout" |
|
|
android:layout_width="match_parent" |
|
|
android:layout_width="match_parent" |
|
|
android:layout_height="match_parent" |
|
|
android:layout_height="match_parent" |
|
|
android:layout_gravity="start" |
|
|
android:layout_gravity="start" |
|
|
android:animateLayoutChanges="true" |
|
|
android:animateLayoutChanges="true" |
|
|
android:orientation="vertical" |
|
|
|
|
|
android:tag="@android:string/yes"> |
|
|
android:tag="@android:string/yes"> |
|
|
|
|
|
|
|
|
|
|
|
<com.google.android.material.appbar.AppBarLayout |
|
|
|
|
|
android:layout_width="match_parent" |
|
|
|
|
|
android:layout_height="wrap_content"> |
|
|
|
|
|
<com.google.android.material.appbar.CollapsingToolbarLayout |
|
|
|
|
|
android:layout_width="match_parent" |
|
|
|
|
|
android:layout_height="wrap_content" |
|
|
|
|
|
app:layout_scrollFlags="scroll|snap|enterAlways"> |
|
|
<androidx.recyclerview.widget.RecyclerView |
|
|
<androidx.recyclerview.widget.RecyclerView |
|
|
android:id="@+id/feedStories" |
|
|
android:id="@+id/feedStories" |
|
|
android:layout_width="match_parent" |
|
|
android:layout_width="match_parent" |
|
@ -21,18 +28,21 @@ |
|
|
android:paddingEnd="5dp" |
|
|
android:paddingEnd="5dp" |
|
|
android:paddingRight="5dp" |
|
|
android:paddingRight="5dp" |
|
|
android:visibility="gone" /> |
|
|
android:visibility="gone" /> |
|
|
|
|
|
</com.google.android.material.appbar.CollapsingToolbarLayout> |
|
|
|
|
|
</com.google.android.material.appbar.AppBarLayout> |
|
|
|
|
|
|
|
|
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout |
|
|
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout |
|
|
android:id="@+id/feedSwipeRefreshLayout" |
|
|
android:id="@+id/feedSwipeRefreshLayout" |
|
|
android:layout_width="match_parent" |
|
|
android:layout_width="match_parent" |
|
|
android:layout_height="wrap_content"> |
|
|
|
|
|
|
|
|
android:layout_height="match_parent" |
|
|
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior"> |
|
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView |
|
|
<androidx.recyclerview.widget.RecyclerView |
|
|
android:id="@+id/feedPosts" |
|
|
android:id="@+id/feedPosts" |
|
|
android:layout_width="match_parent" |
|
|
android:layout_width="match_parent" |
|
|
android:layout_height="match_parent" |
|
|
android:layout_height="match_parent" |
|
|
android:clipToPadding="false" |
|
|
android:clipToPadding="false" |
|
|
android:paddingTop="24dp" |
|
|
|
|
|
|
|
|
android:paddingTop="8dp" |
|
|
tools:listitem="@layout/item_feed" /> |
|
|
tools:listitem="@layout/item_feed" /> |
|
|
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout> |
|
|
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout> |
|
|
</LinearLayout> |
|
|
|
|
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout> |