Last active
July 4, 2016 07:15
-
-
Save cketti/1ea1b31fa3e75046ec0db2fdbc04f06e to your computer and use it in GitHub Desktop.
Android manifest entry for CopyToClipboardActivity with icon, label, and transparent theme
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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