diff --git a/android/service/engine/res/layout-small/info.xml b/android/service/engine/res/layout-small/info.xml
new file mode 100644
index 0000000000..cd2e874a02
--- /dev/null
+++ b/android/service/engine/res/layout-small/info.xml
@@ -0,0 +1,61 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/service/engine/res/layout-small/main.xml b/android/service/engine/res/layout-small/main.xml
new file mode 100644
index 0000000000..6f8611f50c
--- /dev/null
+++ b/android/service/engine/res/layout-small/main.xml
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/service/engine/res/layout/main.xml b/android/service/engine/res/layout/main.xml
index c02e0e2e5a..c26013140d 100644
--- a/android/service/engine/res/layout/main.xml
+++ b/android/service/engine/res/layout/main.xml
@@ -15,7 +15,8 @@
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:text="OpenCV library (www.opencv.org) is used by other applications for image enhancement, panorama stitching, object detection, recognition and tracking and so on. OpenCV Manager provides the best version of the OpenCV for your hardware."
+ android:autoLink="web"
+ android:text="OpenCV library is used by other applications for image enhancement, panorama stitching, object detection, recognition and tracking and so on. OpenCV Manager provides the best version of the OpenCV for your hardware. See www.opencv.org for details."
android:textAppearance="?android:attr/textAppearanceMedium" />
= 0)
{
temp.put("Activity", "y");
- PublicName += " (Active)";
+ PublicName += " (in use)";
}
else
{
diff --git a/android/service/engine/src/org/opencv/engine/manager/PackageListAdapter.java b/android/service/engine/src/org/opencv/engine/manager/PackageListAdapter.java
index cbc0acad63..b684ce1e7c 100644
--- a/android/service/engine/src/org/opencv/engine/manager/PackageListAdapter.java
+++ b/android/service/engine/src/org/opencv/engine/manager/PackageListAdapter.java
@@ -24,10 +24,14 @@ public class PackageListAdapter extends SimpleAdapter {
@SuppressWarnings("unchecked")
Map item = (Map)getItem(position);
Log.d("PackageListAdapter", item.get("Activity"));
- if (item.get("Activity") != "n")
+ if (item.get("Activity") == "y")
{
view.setBackgroundColor(0x50ffffff);
}
+ else
+ {
+ view.setBackgroundColor(0xff000000);
+ }
return view;
}