
현재 왼쪽과 같이 상단에 기존 앱에서 사용하는 Title을 사용하지않고, 타이틀를 만들어서 상단에 ImageButton을 추가하여 메뉴를 뜨게 하고 있습니다.
그런데 메뉴 위치가 하단에 떠서 문의합니다.
오른쪽과 같이 Actionbar위치에 뜨게 하고 싶은데.. 어떻게 해야할지 몰라서 이렇게 문의를 합니다.
매니페스트에서는
<activity
android:name=".MainActivity"
android:launchMode="singleTask"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:theme="@style/AppTheme">
</activity>
하였고,
Style은
<!-- Application theme. -->
<style name="AppTheme" parent="AppBaseTheme">
<item name="android:windowNoTitle">true</item>
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
</style>
타이틀은 제거하였습니다.
menu 위치를 변경할 수 잇는 방법이 있는가요?
구글링해봤는데 제가 못찾아서 그러는지.. 나오지가 않더라구요..ㅠㅠ