<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="android:windowContentOverlay">@null</item>
<item name="android:windowIsTranslucent">true</item>
</style>
테마로 가서 windowContentOverlay와 windowIsTranslucent를 추가해주면 된다.
android:windowContentOverlay :
Widnow의 Cotents area에 overlay를 해주는 옵션값. 이 값을 @null로 주어 값 자체를 투명하게 해준다
android:windowIsTranslucent :
Window의 색상을 투명으로 해준다
훌륭한 글이네요. 감사합니다.