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 000000000..cd2e874a0
--- /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 000000000..6f8611f50
--- /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 c02e0e2e5..c26013140 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 cbc0acad6..b684ce1e7 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;
}