Skip to content

Commit

Permalink
Design: 홈/나만의 계획 recyclerView item xml 수정 #5
Browse files Browse the repository at this point in the history
  • Loading branch information
dkyuuum committed Feb 16, 2024
1 parent beb1aba commit 9185783
Showing 1 changed file with 20 additions and 10 deletions.
30 changes: 20 additions & 10 deletions app/src/main/res/layout/item_home_next_plan.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,48 +5,58 @@
android:id="@+id/linearLayoutCompat3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="6dp"
android:layout_marginEnd="6dp"
android:layout_marginBottom="6dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="@+id/appCompatImageView3"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/tv_grade_semester">

<!-- 분류 -->
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/tv_kind_title"
style="@style/MediumFont.13"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:paddingTop="12dp"
android:paddingBottom="7dp"
android:text="분류"
android:textColor="@color/gray" />
android:textColor="@color/white" />

<!-- 분류 선 -->
<View
android:layout_width="1dp"
android:layout_height="match_parent"
android:background="@android:color/white" />

<!-- 교과목 -->
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/tv_class_title"
style="@style/MediumFont.13"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_weight="2"
android:gravity="center"
android:paddingTop="12dp"
android:paddingBottom="7dp"
android:text="교과목"
android:textColor="@color/gray" />
android:textColor="@color/white" />

<!-- 교과목 선 -->
<View
android:layout_width="1dp"
android:layout_height="match_parent"
android:background="@android:color/white" />

<!-- 학점 -->
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/tv_grade_title"
style="@style/MediumFont.13"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:paddingTop="12dp"
android:paddingBottom="7dp"
android:text="학점"
android:textColor="@color/gray" />
android:textColor="@color/white" />

</androidx.appcompat.widget.LinearLayoutCompat>
</androidx.appcompat.widget.LinearLayoutCompat>

0 comments on commit 9185783

Please sign in to comment.