【发布时间】:2013-08-28 07:39:29
【问题描述】:
我用 SDL 安装了 NDK。
我正在使用带有 MinGW 的 Windows 7。
当我在 Android Studio 中编译源代码时,我收到警告:
[deprecation] AbsoluteLayout in android.widget has been deprecated
我从文件中收到此警告 4 次:
/jni/SDL/android-project/src/org/libsdl/app/SDLActivity.java
我也收到以下警告:
[deprecation] CHANNEL_CONFIGURATION_STEREO in AudioFormat has been deprecated
[deprecation] CHANNEL_CONFIGURATION_MONO in AudioFormat has been deprecated
[deprecation] SURFACE_TYPE_GPU in SurfaceHolder has been deprecated
[deprecation] setType(int) in SurfaceHolder has been deprecated
[deprecation] LA_88 in PixelFormat has been deprecated
[deprecation] RGBA_4444 in PixelFormat has been deprecated
[deprecation] RGBA_5551 in PixelFormat has been deprecated
[deprecation] RGB_332 in PixelFormat has been deprecated
[deprecation] ACTION_POINTER_ID_MASK in MotionEvent has been deprecated
[deprecation] ACTION_POINTER_ID_SHIFT in MotionEvent has been deprecated
我使用 Mercurial 安装了 SDL:
hg clone http://hg.libsdl.org/SDL
并按照README-android.txt中的步骤进行操作
我是否安装了错误的东西?不再支持 SDL?如何解决这些警告?
【问题讨论】:
-
与您的问题无关,但
In general, you should only use the NDK if it is essential to your app—never because you simply prefer to program in C/C++ -
在这种情况下,它对我的应用程序至关重要。不过谢谢你的建议!
标签: android c++ android-ndk sdl deprecated