Skip to content

Commit

Permalink
Design: 향후계획 xml 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
dkyuuum committed Feb 21, 2024
1 parent 1235fe1 commit 2dd6839
Show file tree
Hide file tree
Showing 14 changed files with 521 additions and 459 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ class HomeFragment : Fragment() {
setupRecyclerView() // recyclerView 연결
setupHomeInfoRetrofit() // 홈 화면 ui 연결

binding.cvHomeProfile.setOnClickListener {
binding.ivHomeProfile.setImageResource(R.drawable.ic_user_profile)
}

return binding.root
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -171,5 +171,4 @@ class PlanTimetableFragment : Fragment() {
super.onDestroyView()
_binding = null
}
}

}
12 changes: 12 additions & 0 deletions app/src/main/res/drawable/ic_user_profile.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="792dp"
android:height="792dp"
android:viewportWidth="792"
android:viewportHeight="792">
<path
android:fillColor="#FF000000"
android:pathData="M395.78,304.15c42.03,0 77.99,-14.73 107.88,-44.63c29.89,-29.89 44.63,-65.86 44.63,-107.89c0,-42.03 -14.83,-77.45 -44.63,-107.02C473.66,14.84 437.81,0 395.78,0c-42.03,0 -77.45,14.84 -107.45,44.63c-29.78,29.57 -44.63,64.99 -44.63,107.02c0,42.03 14.73,77.98 44.63,107.89C318.23,289.42 353.75,304.15 395.78,304.15zM322.55,78.42c20.37,-20.36 45.06,-30.76 73.22,-30.76c29.03,0 53.29,10.4 73.66,30.76s30.76,45.06 30.76,73.22c0,29.03 -10.4,53.72 -30.76,74.09s-44.63,30.33 -73.66,30.33c-28.16,0 -52.85,-9.96 -73.22,-30.33c-20.36,-20.36 -30.76,-45.06 -30.76,-74.09C291.79,123.48 302.19,98.78 322.55,78.42z"/>
<path
android:fillColor="#FF000000"
android:pathData="M645.78,538.55v-10.83c0,-104.44 -93.57,-196.7 -198.01,-196.7h-51.12h-50.69c-53.76,0 -100.08,21.67 -138.65,59.36s-61.96,83.56 -61.96,137.34v10.83v201.46c0,29.47 22.96,51.99 52.43,51.99h198.86h197.57c14.3,0 26.75,-5.31 36.82,-15.16c10.3,-10.07 15.6,-22.1 15.6,-36.83V538.55C646.64,571.47 645.78,571.03 645.78,538.55zM594.22,744.34h-197.57H197.78c-3.03,0 -4.34,-1.29 -4.34,-4.34v-77.55V538.55v-0.87c0,-41.59 14.18,-77.66 42.89,-108.32c28.92,-30.86 64.02,-50.69 105.29,-50.69h55.02h52.86c39.94,0 73.97,18.31 102.25,47.22c28.49,29.14 45.93,63.2 45.93,103.55v8.24v0.87l0.86,201.46C598.56,743.05 597.25,744.34 594.22,744.34z"/>
</vector>
10 changes: 10 additions & 0 deletions app/src/main/res/drawable/item_radius_plan.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="61dp"
android:height="20dp"
android:viewportWidth="61"
android:viewportHeight="20">
<path
android:pathData="M10,0L51,0A10,10 0,0 1,61 10L61,10A10,10 0,0 1,51 20L10,20A10,10 0,0 1,0 10L0,10A10,10 0,0 1,10 0z"
android:fillColor="#D9D9D9"/>
</vector>
4 changes: 2 additions & 2 deletions app/src/main/res/drawable/time_track_name_title.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
<path
android:strokeWidth="1"
android:pathData="M15.5,0.5L306.5,0.5A15,15 0,0 1,321.5 15.5L321.5,15.5A15,15 0,0 1,306.5 30.5L15.5,30.5A15,15 0,0 1,0.5 15.5L0.5,15.5A15,15 0,0 1,15.5 0.5z"
android:fillColor="#00000000"
android:strokeColor="#D9D9D9"/>
android:fillColor="#0D99FF"
android:strokeColor="#0D99FF"/>
</vector>
6 changes: 6 additions & 0 deletions app/src/main/res/layout/fragment_plan_time.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@

<!-- Column Headers -->
<TextView
style="@style/MediumFont.13"
android:textColor="@color/black"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:gravity="center"
Expand All @@ -20,6 +22,8 @@
app:layout_columnWeight="1" />

<TextView
style="@style/MediumFont.13"
android:textColor="@color/black"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:gravity="center"
Expand All @@ -28,6 +32,8 @@
app:layout_columnWeight="1" />

<TextView
style="@style/MediumFont.13"
android:textColor="@color/black"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:gravity="center"
Expand Down
Loading

0 comments on commit 2dd6839

Please sign in to comment.