1

I'm try to make a transparent activity in my Android application.

This is an example picture:

enter image description here

Does anyone know a library that can do this ?

lopez.mikhael
  • 9,943
  • 19
  • 67
  • 110

1 Answers1

4

It goes like this:

<activity android:name=".usual.activity.Declaration"
android:theme="@android:style/Theme.Translucent.NoTitleBar" /> 

This should help you.

Ahmad
  • 69,608
  • 17
  • 111
  • 137
Himeshgiri gosvami
  • 2,559
  • 4
  • 16
  • 28