Advertisement
Guest User

Untitled

a guest
Apr 20th, 2014
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. Handler handler=new Handler();
  2. handler.postDelayed(new Runnable(){public void run(){Intent intent=new Intent(getApplicationContext(),Schedule_Popup_Activity.class); startActivity(intent);}}, delay);
  3.  
  4. <android name="Schedule_Popup_Activity
  5. android:theme="@android:style/Theme.Dialog">
  6.  
  7. <style name="MyFloatingWindow">
  8. <item name="android:windowBackground">@android:color/transparent</item>
  9. <item name="android:background">@android:color/transparent</item>
  10. <item name="android:windowIsFloating">true</item>
  11. <item name="android:windowNoTitle">true</item>
  12.  
  13. <item name="android:gravity">bottom</item>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement