Merge branch 'master' of github.com:open-keychain/open-keychain
|
After Width: | Height: | Size: 590 B |
|
After Width: | Height: | Size: 433 B |
|
After Width: | Height: | Size: 684 B |
|
Before Width: | Height: | Size: 0 B After Width: | Height: | Size: 4.9 KiB |
|
After Width: | Height: | Size: 986 B |
|
After Width: | Height: | Size: 1.3 KiB |
@@ -2,6 +2,14 @@
|
||||
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto">
|
||||
|
||||
<item
|
||||
android:id="@+id/encrypt_paste"
|
||||
android:title="@string/btn_paste_encrypted_signed"
|
||||
android:icon="@drawable/ic_action_encrypt_paste_24dp"
|
||||
android:orderInCategory="1"
|
||||
android:visible="false"
|
||||
app:showAsAction="ifRoom" />
|
||||
|
||||
<item
|
||||
android:id="@+id/encrypt_copy"
|
||||
android:title="@string/btn_copy_encrypted_signed"
|
||||
|
||||
7
OpenKeychain/src/main/res/values-v23/themes.xml
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
|
||||
<!-- see http://stackoverflow.com/questions/32169303/activity-did-not-call-finish-api-23 -->
|
||||
<style name="Theme.Keychain.Transparent" parent="@android:style/Theme.Translucent.NoTitleBar" />
|
||||
|
||||
</resources>
|
||||
@@ -88,6 +88,7 @@
|
||||
<string name="btn_match_phrases">"Phrases match"</string>
|
||||
<string name="btn_share_encrypted_signed">"Encrypt/sign and share text"</string>
|
||||
<string name="btn_copy_encrypted_signed">"Encrypt/sign and copy text"</string>
|
||||
<string name="btn_paste_encrypted_signed">"Encrypt/sign and paste text"</string>
|
||||
<string name="btn_view_cert_key">"View certification key"</string>
|
||||
<string name="btn_create_key">"Create key"</string>
|
||||
<string name="btn_add_files">"Add file(s)"</string>
|
||||
|
||||
@@ -85,11 +85,9 @@
|
||||
<item name="alertDialogTheme">@style/Theme.Keychain.Dark.Dialog.Alert</item>
|
||||
</style>
|
||||
|
||||
<style name="Theme.Keychain.Light" parent="Base.Theme.Keychain.Light">
|
||||
</style>
|
||||
<style name="Theme.Keychain.Light" parent="Base.Theme.Keychain.Light"></style>
|
||||
|
||||
<style name="Theme.Keychain.Dark" parent="Base.Theme.Keychain.Dark">
|
||||
</style>
|
||||
<style name="Theme.Keychain.Dark" parent="Base.Theme.Keychain.Dark"></style>
|
||||
|
||||
<!-- http://android-developers.blogspot.de/2014/10/appcompat-v21-material-design-for-pre.html -->
|
||||
<style name="Widget.Keychain.SearchView" parent="Widget.AppCompat.SearchView">
|
||||
@@ -134,4 +132,6 @@
|
||||
<item name="windowActionBar">false</item>
|
||||
<item name="windowNoTitle">true</item>
|
||||
</style>
|
||||
|
||||
<style name="Theme.Keychain.Transparent" parent="@android:style/Theme.NoDisplay" />
|
||||
</resources>
|
||||
|
||||