actionbar 아래 shodow 없애기
AppBarLayout 내에 app:evlevation="0dp" 를 추가하면 됩니다.
xml 코드 수정
<?xml version="1.0" encoding="utf-8"?> <android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent"> <android.support.design.widget.AppBarLayout android:layout_width="match_parent" android:layout_height="wrap_content" app:elevation="0dp" android:theme="@style/AppTheme.AppBarOverlay"> <android.support.v7.widget.Toolbar android:id="@+id/toolbar" android:layout_width="match_parent" android:layout_height="?attr/actionBarSize" android:background="?attr/colorPrimary" app:popupTheme="@style/AppTheme.PopupOverlay" >
변경전
변경후
'Android' 카테고리의 다른 글
[안드로이드] cardView background color (0) | 2017.04.16 |
---|---|
[안드로이드] mapview 의 image capture 하기 (2) | 2017.04.15 |
[안드로이드] Actionbar home, arrow, title color 변경 (0) | 2017.04.13 |
[안드로이드] Assets의 Excel data 불러오기 (0) | 2017.04.12 |
[안드로이드] Bitmap 모서리 round 처리하기 (0) | 2017.04.12 |