Skip to content

Instantly share code, notes, and snippets.

@cketti
Last active July 4, 2016 07:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cketti/1ea1b31fa3e75046ec0db2fdbc04f06e to your computer and use it in GitHub Desktop.
Save cketti/1ea1b31fa3e75046ec0db2fdbc04f06e to your computer and use it in GitHub Desktop.
Android manifest entry for CopyToClipboardActivity with icon, label, and transparent theme
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="...">
<application ...>
...
<activity
android:name=".CopyToClipboardActivity"
android:exported="false"
android:icon="@mipmap/ic_copy_link"
android:label="@string/copy_link_to_clipboard"
android:theme="@android:style/Theme.NoDisplay"/>
</application>
</manifest>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment