android - Display Transparent camera activity with default installed app on start acitivity -
i want following, when application start open 1 activity display transparent activity next image,
backgrounds transparent ( start photographic camera in backgrounds ) , other application , other menu display @ bottom disply in image. when application close, close. when take livewallpapaer time set wallpaper ( done ) transparent screen.
please help me how ?,
define theme in style file
<?xml version="1.0" encoding="utf-8"?> <resources> <style name="theme.transparent" parent="android:theme"> <item name="android:windowistranslucent">true</item> <item name="android:windowbackground">@android:color/transparent</item> <item name="android:windowcontentoverlay">@null</item> <item name="android:windownotitle">true</item> <item name="android:windowisfloating">true</item> <item name="android:backgrounddimenabled">false</item> </style> </resources>
and give theme activity... see this..
android window transparent
No comments:
Post a Comment