Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
4e4db94b
Commit
4e4db94b
authored
Jul 14, 2012
by
Andrey Pavlenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removing warnings on deprecated api when targeting to android-15+
parent
a2430afc
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
23 additions
and
23 deletions
+23
-23
android+BaseLoaderCallback.java
...s/java/generator/src/java/android+BaseLoaderCallback.java
+6
-6
puzzle15Activity.java
...zle/src/org/opencv/samples/puzzle15/puzzle15Activity.java
+2
-2
ColorBlobDetectionActivity.java
...v/samples/colorblobdetect/ColorBlobDetectionActivity.java
+2
-2
FdActivity.java
.../face-detection/src/org/opencv/samples/fd/FdActivity.java
+2
-2
ImageManipulationsActivity.java
...amples/imagemanipulations/ImageManipulationsActivity.java
+2
-2
Sample0Base.java
...dcamera/src/org/opencv/samples/tutorial0/Sample0Base.java
+1
-1
Sample1Java.java
...dopencv/src/org/opencv/samples/tutorial1/Sample1Java.java
+2
-2
Sample2NativeCamera.java
...src/org/opencv/samples/tutorial2/Sample2NativeCamera.java
+2
-2
Sample3Native.java
...ative/src/org/opencv/samples/tutorial3/Sample3Native.java
+2
-2
Sample4Mixed.java
...-mixed/src/org/opencv/samples/tutorial4/Sample4Mixed.java
+2
-2
No files found.
modules/java/generator/src/java/android+BaseLoaderCallback.java
View file @
4e4db94b
...
...
@@ -32,7 +32,7 @@ public abstract class BaseLoaderCallback implements LoaderCallbackInterface {
RestartMessage
.
setTitle
(
"App restart is required"
);
RestartMessage
.
setMessage
(
"Application will be closed now. Start it when installation will be finished!"
);
RestartMessage
.
setCancelable
(
false
);
// This blocks the 'BACK' button
RestartMessage
.
setButton
(
"OK"
,
new
OnClickListener
()
{
RestartMessage
.
setButton
(
AlertDialog
.
BUTTON_POSITIVE
,
"OK"
,
new
OnClickListener
()
{
public
void
onClick
(
DialogInterface
dialog
,
int
which
)
{
mAppContext
.
finish
();
}
...
...
@@ -48,7 +48,7 @@ public abstract class BaseLoaderCallback implements LoaderCallbackInterface {
MarketErrorMessage
.
setTitle
(
"OpenCV Manager"
);
MarketErrorMessage
.
setMessage
(
"Package installation failed!"
);
MarketErrorMessage
.
setCancelable
(
false
);
// This blocks the 'BACK' button
MarketErrorMessage
.
setButton
(
"OK"
,
new
OnClickListener
()
{
MarketErrorMessage
.
setButton
(
AlertDialog
.
BUTTON_POSITIVE
,
"OK"
,
new
OnClickListener
()
{
public
void
onClick
(
DialogInterface
dialog
,
int
which
)
{
mAppContext
.
finish
();
}
...
...
@@ -69,7 +69,7 @@ public abstract class BaseLoaderCallback implements LoaderCallbackInterface {
IncomatibilityMessage
.
setTitle
(
"OpenCV Manager"
);
IncomatibilityMessage
.
setMessage
(
"OpenCV Manager service is incompatible with this app. Update it!"
);
IncomatibilityMessage
.
setCancelable
(
false
);
// This blocks the 'BACK' button
IncomatibilityMessage
.
setButton
(
"OK"
,
new
OnClickListener
()
{
IncomatibilityMessage
.
setButton
(
AlertDialog
.
BUTTON_POSITIVE
,
"OK"
,
new
OnClickListener
()
{
public
void
onClick
(
DialogInterface
dialog
,
int
which
)
{
mAppContext
.
finish
();
}
...
...
@@ -84,7 +84,7 @@ public abstract class BaseLoaderCallback implements LoaderCallbackInterface {
InitFailedDialog
.
setTitle
(
"OpenCV error"
);
InitFailedDialog
.
setMessage
(
"OpenCV was not initialised correctly. Application will be shut down"
);
InitFailedDialog
.
setCancelable
(
false
);
// This blocks the 'BACK' button
InitFailedDialog
.
setButton
(
"OK"
,
new
OnClickListener
()
{
InitFailedDialog
.
setButton
(
AlertDialog
.
BUTTON_POSITIVE
,
"OK"
,
new
OnClickListener
()
{
public
void
onClick
(
DialogInterface
dialog
,
int
which
)
{
mAppContext
.
finish
();
...
...
@@ -102,7 +102,7 @@ public abstract class BaseLoaderCallback implements LoaderCallbackInterface {
InstallMessage
.
setTitle
(
"Package not found"
);
InstallMessage
.
setMessage
(
callback
.
getPackageName
()
+
" package was not found! Try to install it?"
);
InstallMessage
.
setCancelable
(
false
);
// This blocks the 'BACK' button
InstallMessage
.
setButton
(
"Yes"
,
new
OnClickListener
()
InstallMessage
.
setButton
(
AlertDialog
.
BUTTON_POSITIVE
,
"Yes"
,
new
OnClickListener
()
{
public
void
onClick
(
DialogInterface
dialog
,
int
which
)
{
...
...
@@ -110,7 +110,7 @@ public abstract class BaseLoaderCallback implements LoaderCallbackInterface {
}
});
InstallMessage
.
setButton
2
(
"No"
,
new
OnClickListener
()
{
InstallMessage
.
setButton
(
AlertDialog
.
BUTTON_NEGATIVE
,
"No"
,
new
OnClickListener
()
{
public
void
onClick
(
DialogInterface
dialog
,
int
which
)
{
...
...
samples/android/15-puzzle/src/org/opencv/samples/puzzle15/puzzle15Activity.java
View file @
4e4db94b
...
...
@@ -36,7 +36,7 @@ public class puzzle15Activity extends Activity
AlertDialog
ad
=
new
AlertDialog
.
Builder
(
mAppContext
).
create
();
ad
.
setCancelable
(
false
);
// This blocks the 'BACK' button
ad
.
setMessage
(
"Fatal error: can't open camera!"
);
ad
.
setButton
(
"OK"
,
new
DialogInterface
.
OnClickListener
()
{
ad
.
setButton
(
AlertDialog
.
BUTTON_POSITIVE
,
"OK"
,
new
DialogInterface
.
OnClickListener
()
{
public
void
onClick
(
DialogInterface
dialog
,
int
which
)
{
dialog
.
dismiss
();
finish
();
...
...
@@ -74,7 +74,7 @@ public class puzzle15Activity extends Activity
AlertDialog
ad
=
new
AlertDialog
.
Builder
(
this
).
create
();
ad
.
setCancelable
(
false
);
// This blocks the 'BACK' button
ad
.
setMessage
(
"Fatal error: can't open camera!"
);
ad
.
setButton
(
"OK"
,
new
DialogInterface
.
OnClickListener
()
{
ad
.
setButton
(
AlertDialog
.
BUTTON_POSITIVE
,
"OK"
,
new
DialogInterface
.
OnClickListener
()
{
public
void
onClick
(
DialogInterface
dialog
,
int
which
)
{
dialog
.
dismiss
();
finish
();
...
...
samples/android/color-blob-detection/src/org/opencv/samples/colorblobdetect/ColorBlobDetectionActivity.java
View file @
4e4db94b
...
...
@@ -31,7 +31,7 @@ public class ColorBlobDetectionActivity extends Activity {
AlertDialog
ad
=
new
AlertDialog
.
Builder
(
mAppContext
).
create
();
ad
.
setCancelable
(
false
);
// This blocks the 'BACK' button
ad
.
setMessage
(
"Fatal error: can't open camera!"
);
ad
.
setButton
(
"OK"
,
new
DialogInterface
.
OnClickListener
()
{
ad
.
setButton
(
AlertDialog
.
BUTTON_POSITIVE
,
"OK"
,
new
DialogInterface
.
OnClickListener
()
{
public
void
onClick
(
DialogInterface
dialog
,
int
which
)
{
dialog
.
dismiss
();
finish
();
...
...
@@ -69,7 +69,7 @@ public class ColorBlobDetectionActivity extends Activity {
AlertDialog
ad
=
new
AlertDialog
.
Builder
(
this
).
create
();
ad
.
setCancelable
(
false
);
// This blocks the 'BACK' button
ad
.
setMessage
(
"Fatal error: can't open camera!"
);
ad
.
setButton
(
"OK"
,
new
DialogInterface
.
OnClickListener
()
{
ad
.
setButton
(
AlertDialog
.
BUTTON_POSITIVE
,
"OK"
,
new
DialogInterface
.
OnClickListener
()
{
public
void
onClick
(
DialogInterface
dialog
,
int
which
)
{
dialog
.
dismiss
();
finish
();
...
...
samples/android/face-detection/src/org/opencv/samples/fd/FdActivity.java
View file @
4e4db94b
...
...
@@ -45,7 +45,7 @@ public class FdActivity extends Activity {
AlertDialog
ad
=
new
AlertDialog
.
Builder
(
mAppContext
).
create
();
ad
.
setCancelable
(
false
);
// This blocks the 'BACK' button
ad
.
setMessage
(
"Fatal error: can't open camera!"
);
ad
.
setButton
(
"OK"
,
new
DialogInterface
.
OnClickListener
()
{
ad
.
setButton
(
AlertDialog
.
BUTTON_POSITIVE
,
"OK"
,
new
DialogInterface
.
OnClickListener
()
{
public
void
onClick
(
DialogInterface
dialog
,
int
which
)
{
dialog
.
dismiss
();
finish
();
...
...
@@ -89,7 +89,7 @@ public class FdActivity extends Activity {
AlertDialog
ad
=
new
AlertDialog
.
Builder
(
this
).
create
();
ad
.
setCancelable
(
false
);
// This blocks the 'BACK' button
ad
.
setMessage
(
"Fatal error: can't open camera!"
);
ad
.
setButton
(
"OK"
,
new
DialogInterface
.
OnClickListener
()
{
ad
.
setButton
(
AlertDialog
.
BUTTON_POSITIVE
,
"OK"
,
new
DialogInterface
.
OnClickListener
()
{
public
void
onClick
(
DialogInterface
dialog
,
int
which
)
{
dialog
.
dismiss
();
finish
();
...
...
samples/android/image-manipulations/src/org/opencv/samples/imagemanipulations/ImageManipulationsActivity.java
View file @
4e4db94b
...
...
@@ -54,7 +54,7 @@ public class ImageManipulationsActivity extends Activity {
AlertDialog
ad
=
new
AlertDialog
.
Builder
(
mAppContext
).
create
();
ad
.
setCancelable
(
false
);
// This blocks the 'BACK' button
ad
.
setMessage
(
"Fatal error: can't open camera!"
);
ad
.
setButton
(
"OK"
,
new
DialogInterface
.
OnClickListener
()
{
ad
.
setButton
(
AlertDialog
.
BUTTON_POSITIVE
,
"OK"
,
new
DialogInterface
.
OnClickListener
()
{
public
void
onClick
(
DialogInterface
dialog
,
int
which
)
{
dialog
.
dismiss
();
finish
();
...
...
@@ -91,7 +91,7 @@ public class ImageManipulationsActivity extends Activity {
AlertDialog
ad
=
new
AlertDialog
.
Builder
(
this
).
create
();
ad
.
setCancelable
(
false
);
// This blocks the 'BACK' button
ad
.
setMessage
(
"Fatal error: can't open camera!"
);
ad
.
setButton
(
"OK"
,
new
DialogInterface
.
OnClickListener
()
{
ad
.
setButton
(
AlertDialog
.
BUTTON_POSITIVE
,
"OK"
,
new
DialogInterface
.
OnClickListener
()
{
public
void
onClick
(
DialogInterface
dialog
,
int
which
)
{
dialog
.
dismiss
();
finish
();
...
...
samples/android/tutorial-0-androidcamera/src/org/opencv/samples/tutorial0/Sample0Base.java
View file @
4e4db94b
...
...
@@ -36,7 +36,7 @@ public class Sample0Base extends Activity {
AlertDialog
ad
=
new
AlertDialog
.
Builder
(
this
).
create
();
ad
.
setCancelable
(
false
);
// This blocks the 'BACK' button
ad
.
setMessage
(
"Fatal error: can't open camera!"
);
ad
.
setButton
(
"OK"
,
new
DialogInterface
.
OnClickListener
()
{
ad
.
setButton
(
AlertDialog
.
BUTTON_POSITIVE
,
"OK"
,
new
DialogInterface
.
OnClickListener
()
{
public
void
onClick
(
DialogInterface
dialog
,
int
which
)
{
dialog
.
dismiss
();
finish
();
...
...
samples/android/tutorial-1-addopencv/src/org/opencv/samples/tutorial1/Sample1Java.java
View file @
4e4db94b
...
...
@@ -36,7 +36,7 @@ public class Sample1Java extends Activity {
AlertDialog
ad
=
new
AlertDialog
.
Builder
(
mAppContext
).
create
();
ad
.
setCancelable
(
false
);
// This blocks the 'BACK' button
ad
.
setMessage
(
"Fatal error: can't open camera!"
);
ad
.
setButton
(
"OK"
,
new
DialogInterface
.
OnClickListener
()
{
ad
.
setButton
(
AlertDialog
.
BUTTON_POSITIVE
,
"OK"
,
new
DialogInterface
.
OnClickListener
()
{
public
void
onClick
(
DialogInterface
dialog
,
int
which
)
{
dialog
.
dismiss
();
finish
();
...
...
@@ -73,7 +73,7 @@ public class Sample1Java extends Activity {
AlertDialog
ad
=
new
AlertDialog
.
Builder
(
this
).
create
();
ad
.
setCancelable
(
false
);
// This blocks the 'BACK' button
ad
.
setMessage
(
"Fatal error: can't open camera!"
);
ad
.
setButton
(
"OK"
,
new
DialogInterface
.
OnClickListener
()
{
ad
.
setButton
(
AlertDialog
.
BUTTON_POSITIVE
,
"OK"
,
new
DialogInterface
.
OnClickListener
()
{
public
void
onClick
(
DialogInterface
dialog
,
int
which
)
{
dialog
.
dismiss
();
finish
();
...
...
samples/android/tutorial-2-opencvcamera/src/org/opencv/samples/tutorial2/Sample2NativeCamera.java
View file @
4e4db94b
...
...
@@ -43,7 +43,7 @@ public class Sample2NativeCamera extends Activity {
AlertDialog
ad
=
new
AlertDialog
.
Builder
(
mAppContext
).
create
();
ad
.
setCancelable
(
false
);
// This blocks the 'BACK' button
ad
.
setMessage
(
"Fatal error: can't open camera!"
);
ad
.
setButton
(
"OK"
,
new
DialogInterface
.
OnClickListener
()
{
ad
.
setButton
(
AlertDialog
.
BUTTON_POSITIVE
,
"OK"
,
new
DialogInterface
.
OnClickListener
()
{
public
void
onClick
(
DialogInterface
dialog
,
int
which
)
{
dialog
.
dismiss
();
finish
();
...
...
@@ -80,7 +80,7 @@ public class Sample2NativeCamera extends Activity {
AlertDialog
ad
=
new
AlertDialog
.
Builder
(
this
).
create
();
ad
.
setCancelable
(
false
);
// This blocks the 'BACK' button
ad
.
setMessage
(
"Fatal error: can't open camera!"
);
ad
.
setButton
(
"OK"
,
new
DialogInterface
.
OnClickListener
()
{
ad
.
setButton
(
AlertDialog
.
BUTTON_POSITIVE
,
"OK"
,
new
DialogInterface
.
OnClickListener
()
{
public
void
onClick
(
DialogInterface
dialog
,
int
which
)
{
dialog
.
dismiss
();
finish
();
...
...
samples/android/tutorial-3-native/src/org/opencv/samples/tutorial3/Sample3Native.java
View file @
4e4db94b
...
...
@@ -34,7 +34,7 @@ public class Sample3Native extends Activity {
AlertDialog
ad
=
new
AlertDialog
.
Builder
(
mAppContext
).
create
();
ad
.
setCancelable
(
false
);
// This blocks the 'BACK' button
ad
.
setMessage
(
"Fatal error: can't open camera!"
);
ad
.
setButton
(
"OK"
,
new
DialogInterface
.
OnClickListener
()
{
ad
.
setButton
(
AlertDialog
.
BUTTON_POSITIVE
,
"OK"
,
new
DialogInterface
.
OnClickListener
()
{
public
void
onClick
(
DialogInterface
dialog
,
int
which
)
{
dialog
.
dismiss
();
finish
();
...
...
@@ -71,7 +71,7 @@ public class Sample3Native extends Activity {
AlertDialog
ad
=
new
AlertDialog
.
Builder
(
this
).
create
();
ad
.
setCancelable
(
false
);
// This blocks the 'BACK' button
ad
.
setMessage
(
"Fatal error: can't open camera!"
);
ad
.
setButton
(
"OK"
,
new
DialogInterface
.
OnClickListener
()
{
ad
.
setButton
(
AlertDialog
.
BUTTON_POSITIVE
,
"OK"
,
new
DialogInterface
.
OnClickListener
()
{
public
void
onClick
(
DialogInterface
dialog
,
int
which
)
{
dialog
.
dismiss
();
finish
();
...
...
samples/android/tutorial-4-mixed/src/org/opencv/samples/tutorial4/Sample4Mixed.java
View file @
4e4db94b
...
...
@@ -42,7 +42,7 @@ public class Sample4Mixed extends Activity {
AlertDialog
ad
=
new
AlertDialog
.
Builder
(
mAppContext
).
create
();
ad
.
setCancelable
(
false
);
// This blocks the 'BACK' button
ad
.
setMessage
(
"Fatal error: can't open camera!"
);
ad
.
setButton
(
"OK"
,
new
DialogInterface
.
OnClickListener
()
{
ad
.
setButton
(
AlertDialog
.
BUTTON_POSITIVE
,
"OK"
,
new
DialogInterface
.
OnClickListener
()
{
public
void
onClick
(
DialogInterface
dialog
,
int
which
)
{
dialog
.
dismiss
();
finish
();
...
...
@@ -79,7 +79,7 @@ public class Sample4Mixed extends Activity {
AlertDialog
ad
=
new
AlertDialog
.
Builder
(
this
).
create
();
ad
.
setCancelable
(
false
);
// This blocks the 'BACK' button
ad
.
setMessage
(
"Fatal error: can't open camera!"
);
ad
.
setButton
(
"OK"
,
new
DialogInterface
.
OnClickListener
()
{
ad
.
setButton
(
AlertDialog
.
BUTTON_POSITIVE
,
"OK"
,
new
DialogInterface
.
OnClickListener
()
{
public
void
onClick
(
DialogInterface
dialog
,
int
which
)
{
dialog
.
dismiss
();
finish
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment