YAPP-19th / Yumyum-Doctor-Android

커스텀 레시피 공유 앱 냠냠박사 :beverage_box: 🎓
Apache License 2.0
11 stars 1 forks source link

Feature/appbar #29

Closed junieberry closed 2 years ago

junieberry commented 2 years ago

무슨 기능인가요?

공통으로 사용할 수 있는 appbar을 디자인했습니다!

화면

image

구체적인 작업 내용

위의 화면 구성과 같이 생긴 앱바에서 모두 사용할 수 있는 앱바입니다. <include> 태그를 사용해서 xml에 추가합니다!

        <include
            android:id="@+id/write_toolbar"
            layout="@layout/layout_appbar"
            android:layout_width="match_parent"
            android:layout_height="40dp"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent"
            app:main="@{@string/write_recipe_tv_title}"
            app:sub="@{@string/common_cancel}"/>

기타

app:main 안에는 가운데 (레시피 작성)의 string을, app:sub 안에는 오른쪽 (취소)의 string을 넣어주세요 onclicklistener은 바인딩으로 넣으면 복잡해질 것 같아서 binding.WriteToolbar.(layout_appbar 내부의 id) 이 방식으로 넣어주시면 될것같아요..!

activity_write_recipeactivity_research_list는 제가 수정해봤는데 나머지는 클릭 리스너도 달려있고 해서 꼬일까봐 수정 안했습니다.

Close Issue

close #22