checkey / res / menu / context.xml @ cd4d2518
History | View | Annotate | Download (751 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/virustotal" |
6 |
android:showAsAction="ifRoom|withText" |
7 |
android:icon="@drawable/virustotal" |
8 |
android:title="@string/virustotal"/> |
9 |
<item
|
10 |
android:id="@+id/by_apk_hash" |
11 |
android:showAsAction="ifRoom|withText" |
12 |
android:title="@string/by_apk_hash"/> |
13 |
<item
|
14 |
android:id="@+id/by_package_name" |
15 |
android:showAsAction="ifRoom|withText" |
16 |
android:title="@string/by_package_name"/> |
17 |
<item
|
18 |
android:id="@+id/by_signing_certificate" |
19 |
android:showAsAction="ifRoom|withText" |
20 |
android:title="@string/by_signing_certificate"/> |
21 |
|
22 |
</menu>
|