checkey / res / menu / context.xml @ 24a4d539
History | View | Annotate | Download (932 Bytes)
1 |
<?xml version="1.0" encoding="utf-8"?>
|
---|---|
2 |
<menu xmlns:android="http://schemas.android.com/apk/res/android" > |
3 |
|
4 |
<item
|
5 |
android:id="@+id/save" |
6 |
android:icon="@android:drawable/ic_menu_save" |
7 |
android:showAsAction="ifRoom|withText" |
8 |
android:title="@string/save"/> |
9 |
<item
|
10 |
android:id="@+id/virustotal" |
11 |
android:icon="@drawable/virustotal" |
12 |
android:showAsAction="ifRoom|withText" |
13 |
android:title="@string/virustotal"/> |
14 |
<item
|
15 |
android:id="@+id/by_apk_hash" |
16 |
android:showAsAction="ifRoom|withText" |
17 |
android:title="@string/by_apk_hash"/> |
18 |
<item
|
19 |
android:id="@+id/by_package_name" |
20 |
android:showAsAction="ifRoom|withText" |
21 |
android:title="@string/by_package_name"/> |
22 |
<item
|
23 |
android:id="@+id/by_signing_certificate" |
24 |
android:showAsAction="ifRoom|withText" |
25 |
android:title="@string/by_signing_certificate"/> |
26 |
|
27 |
</menu>
|