My Requirement is a full transparent status bar with change color of the status bar in same activity
dynamically.
For that, I added getWindow().addFlags(WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS);
and in style.xml
<item name="android:windowTranslucentNavigation">true</item>
<item name="android:windowTranslucentStatus">false</item>
So It's working fine but I need to adjust screen when soft keypad opens.
So I tried android:windowSoftInputMode="adjustPan|adjustResize"
but screen not resized or scrolled. Anyone can help me on same.