1

i'm new to Android, i'm looking to find if there a Dialog feature which stays at the bottom of the application, but across different activities.(Non modal dialog) It should not loose data if the activities are changed. Thanks

Edit: For example, in google play music they have play controls floating on top of the lists.

Zeus
  • 6,386
  • 6
  • 54
  • 89
  • You can make a custom dialog based on your need and use it across your application. Look at here please: http://www.mkyong.com/android/android-custom-dialog-example/ – Hesam Dec 09 '13 at 05:19
  • Looks like it stays on top of the application blocking the Activity view. I need something which does not block the activity and stays on top of all the activities that open without loosing the data. For example, in google play they have play controls floating on top of the lists. – Zeus Dec 09 '13 at 05:23

1 Answers1

0

According to your requirement, Add the View to the WindowManager when your LaucherActivity launches ,Then it ll stays until your are out from your app..

Check for more info this, this, this

Community
  • 1
  • 1
Jagadesh Seeram
  • 2,630
  • 1
  • 16
  • 29
  • Just to clarify, I need the dialog to stay on top of the Activities within the app that i'm developing, does this WindowManager fulfil that? – Zeus Dec 09 '13 at 05:29
  • Not yet, i just want to be sure. Thanks will try and let you know. – Zeus Dec 09 '13 at 05:37