Skip to content

Commit

Permalink
Merge pull request #536 from Team-WSS/feat/515
Browse files Browse the repository at this point in the history
feat: 소소한 수다글 플로팅 버튼 제거 및 상단에 글작성 아이콘 추가
  • Loading branch information
s9hn authored Jan 14, 2025
2 parents ccf3831 + 20b9968 commit 439d776
Showing 1 changed file with 11 additions and 12 deletions.
23 changes: 11 additions & 12 deletions app/src/main/res/layout/fragment_feed.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,17 @@
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />

<ImageView
android:id="@+id/iv_novel_feed_write"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:layout_marginEnd="20dp"
android:onClick="@{()->onWriteClick.invoke()}"
android:src="@drawable/ic_pencil"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent" />

<HorizontalScrollView
android:id="@+id/hsv_feed"
android:layout_width="0dp"
Expand Down Expand Up @@ -97,18 +108,6 @@
tools:listitem="@layout/item_feed" />
</com.simform.refresh.SSPullToRefreshLayout>

<ImageView
android:id="@+id/iv_novel_feed_write"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="24dp"
android:layout_marginBottom="44dp"
android:elevation="40dp"
android:onClick="@{()->onWriteClick.invoke()}"
android:src="@drawable/bg_floating_write_button"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent" />

<com.into.websoso.common.ui.custom.WebsosoLoadingLayout
android:id="@+id/wll_feed"
android:layout_width="match_parent"
Expand Down

0 comments on commit 439d776

Please sign in to comment.