如何在 Android Studio 中导入 java.awt.image.BufferedImage
How can I import java.awt.image.BufferedImage in Android Studio
我需要我的 android 应用程序来识别 BufferedImage,我正在使用 Android Studio。
我看到有一种方法可以在 Eclipse 中导入 JRE 库系统,但我在 Android Studio 中遇到了麻烦。
有什么想法吗?
谢谢!
你不能。
Android 不支持 AWT 包,您需要更改实现以使用 Android 类。
查看这些类似的问题:
Porting AWT graphics code to Android
How to add java AWT image package in Android
Using AWT with Android
我需要我的 android 应用程序来识别 BufferedImage,我正在使用 Android Studio。 我看到有一种方法可以在 Eclipse 中导入 JRE 库系统,但我在 Android Studio 中遇到了麻烦。
有什么想法吗?
谢谢!
你不能。
Android 不支持 AWT 包,您需要更改实现以使用 Android 类。
查看这些类似的问题:
Porting AWT graphics code to Android
How to add java AWT image package in Android
Using AWT with Android