Skip to content

Instantly share code, notes, and snippets.

@panpf
Last active November 17, 2022 06:32
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save panpf/467f82d741bf2f761f47 to your computer and use it in GitHub Desktop.
Save panpf/467f82d741bf2f761f47 to your computer and use it in GitHub Desktop.
Android - 透明的Activity
要实现透明的Activity很简单,只需要给Activity设置一个透明的主题即可
<activity
android:name="xxxxxxxx"
android:theme="@android:style/Theme.Translucent">
<intent-filter>
<action android:name="android.intent.action.LAUCHER" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment