종종 레이아웃 파일에서 다음과 같은 툴바 선언을 볼 수 있습니다.
<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light">
</android.support.v7.widget.Toolbar>
테마와 관련된 두 가지 속성 인 theme 및 popupTheme가있는 이유는 무엇입니까?
각각의 목적은 무엇입니까?