Skip to content

Commit

Permalink
fix: 공모 제목 및 가격 줄바꿈, 말줄임 되도록 수정 (#466)
Browse files Browse the repository at this point in the history
  • Loading branch information
Namyunsuk authored Aug 23, 2024
1 parent c52d547 commit d81bc88
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions android/app/src/main/res/layout/item_offering.xml
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,9 @@

<TextView
android:id="@+id/tv_offering_title"
android:layout_width="wrap_content"
android:layout_width="0dp"
android:layout_height="wrap_content"
app:layout_constraintEnd_toEndOf="parent"
android:layout_marginStart="15dp"
android:layout_marginTop="6dp"
android:ellipsize="end"
Expand Down Expand Up @@ -103,12 +104,13 @@
<TextView
android:id="@+id/tv_origin_price"
style="@style/Theme.AppCompat.TextView.Normal.Gray700.Size12"
android:layout_width="wrap_content"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginTop="24dp"
app:layout_constraintEnd_toStartOf="@id/tv_divided_price"
android:layout_marginBottom="17dp"
android:ellipsize="end"
android:maxLines="1"
android:maxLines="2"
android:text='@{offering.originPrice != null ? @string/all_money_amount_text(offering.originPrice) : ""}'
app:layout_constraintBottom_toBottomOf="@id/tv_divided_price"
app:layout_constraintStart_toStartOf="@id/tv_meeting_address"
Expand Down

0 comments on commit d81bc88

Please sign in to comment.