我正在为 android 和 pc 制作游戏,并且必须导入 android 独有的内容以及包含仅适用于 android 的代码的编写方法
我希望能够做这样的事情,所以在我编译非 Android 版本的情况下,它不会给出编译错误
boolean android = "The Android Project".equals(System.getProperty("java.specification.vendor"));
void setup(){
if (android)
importAndroid();
//other setup stuff irrelevant to the question
}
void importAndroid(){
import android.content.SharedPreferences;
import android.preference.PreferenceManager;
import android.content.Context;
import android.app.Activity;
}
扬帆大鱼
相关分类