Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

마인드맵 화면 구성 #67

Merged
merged 6 commits into from
Nov 20, 2023
Merged

Conversation

yang1318
Copy link
Collaborator

@yang1318 yang1318 commented Nov 20, 2023

관련 이슈

작업한 내용

  • 보드 화면 xml
    • 바텀 네비게이션으로 하려 했으나, 바텀 네비게이션의 의미가 눌렀을 때 다른 화면으로 전환 되는 의미가 강한것 같아 단순 레이아웃과 버튼으로 구성함.
  • 보드 화면 Fragment 설정
    image

@yang1318 yang1318 added this to the 마인드 맵 milestone Nov 20, 2023
@yang1318 yang1318 self-assigned this Nov 20, 2023
@yang1318 yang1318 requested a review from hegleB November 20, 2023 13:59
@github-actions github-actions bot added 📱AOS 안드로이드 작업 🎨UI UI 작업 labels Nov 20, 2023
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

바텀바의 영역이 너무 모호해서 색깔 바꾸면 좋을거같아요!

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

gray1 에서 gray2로 변경했습니다~!

구분이 어렵다는 피드백을 받고 backgruond color를 gray1 에서 gray2로 변경
Comment on lines 31 to 75
<LinearLayout
android:id="@+id/ll_mindmap_bottom_bar"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:background="@color/gray2"
android:orientation="horizontal"
android:paddingHorizontal="30dp"
android:paddingVertical="20dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent">

<ImageButton
android:id="@+id/imgbtn_mindmap_add"
android:layout_width="25dp"
android:layout_height="25dp"
android:layout_weight="1"
android:background="@android:color/transparent"
android:src="@drawable/ic_add" />

<ImageButton
android:id="@+id/imgbtn_mindmap_remove"
android:layout_width="25dp"
android:layout_height="25dp"
android:layout_weight="1"
android:background="@android:color/transparent"
android:src="@drawable/ic_remove" />

<ImageButton
android:id="@+id/imgbtn_mindmap_edit"
android:layout_width="25dp"
android:layout_height="25dp"
android:layout_weight="1"
android:background="@android:color/transparent"
android:src="@drawable/ic_outlined_drawing" />

<ImageButton
android:id="@+id/imgbtn_mindmap_back"
android:layout_width="25dp"
android:layout_height="25dp"
android:layout_weight="1"
android:background="@android:color/transparent"
android:src="@drawable/ic_undo" />

</LinearLayout>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

노드 선택 시 BottomBar 숨김 처리를 위해 LinearLayout을 사용하신 것 같아요. 그런데 ConstraintLayout의 Group 기능을 활용하면 visibility 관리가 더욱 용이해질 거예요. 또한, 요소들 사이의 간격을 조절할 때는 ConstraintLayout의 chainStyle을 사용해 보시는 것도 좋은 선택일 것 같습니다

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

넵 반영했습니다 ㅎㅎ

@hegleB hegleB self-requested a review November 20, 2023 15:08
@hegleB hegleB merged commit 063d70d into AOS-feature/mindmap Nov 20, 2023
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
📱AOS 안드로이드 작업 🎨UI UI 작업
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants