Skip to content

Commit

Permalink
Merge pull request #259 from mash-up-kr/fix/minuk/251-schedule-detail…
Browse files Browse the repository at this point in the history
…-event-line

[Fix] 스케줄 이벤트 리스트 여러줄로 늘어날 수 있도록 수정
  • Loading branch information
jaeryo2357 authored Mar 6, 2023
2 parents 7901691 + 131f7ae commit 29f5e5e
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions app/src/main/res/layout/item_event_timeline_content.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,24 +31,27 @@

<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/tv_title"
android:layout_width="wrap_content"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginEnd="8dp"
android:text="@{model.body.title}"
android:textAppearance="@style/TextAppearance.Mashup.Subtitle2_16_SB"
android:textColor="@color/gray700"
app:layout_constraintEnd_toStartOf="@+id/tv_time"
app:layout_constraintStart_toEndOf="@id/tv_number"
app:layout_constraintTop_toTopOf="parent"
tool:text="안드로이드 팀 세미나" />
tool:text="안드로이드 팀 세미나\n세미나 테스트\n3줄테스트" />

<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/tv_sub_title"
android:layout_width="wrap_content"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginTop="4dp"
android:text="@{model.body.content}"
android:textAppearance="@style/TextAppearance.Mashup.Body3_14_R"
android:textColor="@color/gray600"
app:layout_constraintEnd_toEndOf="@id/tv_title"
app:layout_constraintStart_toStartOf="@id/tv_title"
app:layout_constraintTop_toBottomOf="@id/tv_title"
tool:text="안드로이드 팀 세미나" />
Expand Down

0 comments on commit 29f5e5e

Please sign in to comment.