Skip to content

Commit ea02c29

Browse files
authored
Merge pull request #323 from SPOTeam/SPOT-231-FEAT-신청승인UI수정
글 길이 제한 수정
2 parents 05c06a0 + d6dc195 commit ea02c29

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

SPOTeam_android/app/src/main/res/layout/activity_community_content.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@
139139

140140
<TextView
141141
android:id="@+id/community_content_title_tv"
142-
android:layout_width="wrap_content"
142+
android:layout_width="0dp"
143143
android:layout_height="wrap_content"
144144
android:layout_marginTop="10dp"
145145
android:fontFamily="@font/suit_semi_bold"
@@ -149,6 +149,7 @@
149149
android:textSize="16dp"
150150
android:textStyle="bold"
151151
app:layout_constraintStart_toStartOf="@id/community_content_profile_iv"
152+
app:layout_constraintEnd_toEndOf="@id/more_ll"
152153
app:layout_constraintTop_toBottomOf="@id/community_content_theme_tv" />
153154

154155
<com.google.android.material.imageview.ShapeableImageView

SPOTeam_android/app/src/main/res/layout/item_content_comment.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,15 +59,16 @@
5959

6060
<TextView
6161
android:id="@+id/community_content_comment_str_tv"
62-
android:layout_width="wrap_content"
62+
android:layout_width="0dp"
6363
android:layout_height="wrap_content"
64-
android:textAlignment="center"
64+
android:gravity="start"
6565
android:text="카카오 최종합격"
6666
android:textSize="14dp"
6767
android:layout_marginTop="10dp"
6868
android:textFontWeight="800"
6969
android:textColor="@color/black"
7070
app:layout_constraintStart_toStartOf="@id/writerInfo_ll"
71+
app:layout_constraintEnd_toEndOf="parent"
7172
app:layout_constraintTop_toBottomOf="@id/writerInfo_ll" />
7273

7374
<ImageView

SPOTeam_android/app/src/main/res/layout/item_content_comment_reply.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,15 +71,16 @@
7171

7272
<TextView
7373
android:id="@+id/community_content_comment_reply_str_tv"
74-
android:layout_width="wrap_content"
74+
android:layout_width="0dp"
7575
android:layout_height="wrap_content"
76-
android:textAlignment="center"
76+
android:textAlignment="textStart"
7777
android:text="카카오 최종합격"
7878
android:textSize="14dp"
7979
android:layout_marginTop="10dp"
8080
android:textFontWeight="800"
8181
android:textColor="@color/black"
8282
app:layout_constraintStart_toStartOf="@id/reply_writerInfo_ll"
83+
app:layout_constraintEnd_toEndOf="parent"
8384
app:layout_constraintTop_toBottomOf="@id/reply_writerInfo_ll" />
8485

8586

0 commit comments

Comments
 (0)