i make application uses same theme 'complete action using' app on android 5. exist or have write on own?
i found out, how achieve this. theme is: theme.material.light.noactionbar, need add fragment. edit theme activity transparent:
<item name="android:windowistranslucent">true</item> <item name="android:windowcontentoverlay">@null</item> <item name="android:windownotitle">true</item> <item name="android:windowisfloating">true</item> <item name="android:backgrounddimenabled">true</item>
and set background of fragment white.
android:background="@color/primary"
Comments
Post a Comment