android 里面的@StringRes int title 这个去android 代码的那个文件里面去找?

public final class FrameworkZips {
    public static final String ARCH = getArch();
    public static final String SDK = Integer.toString(Build.VERSION.SDK_INT);

    private static final File ONLINE_FILE = new File(XposedApp.getInstance().getCacheDir(), "framework.json");
    private static final String ONLINE_URL = "http://dl-xda.xposed.info/framework.json";

    public enum Type {
        INSTALLER(R.string.install_update, R.string.framework_install, R.string.framework_install_recovery),
        UNINSTALLER(R.string.uninstall, R.string.uninstall, R.string.framework_uninstall_recovery);

        public final int title;
        public final int text_flash;
        public final int text_flash_recovery;

        Type(@StringRes int title, @StringRes int text_flash, @StringRes int text_flash_recovery) {
            this.title = title;
            this.text_flash = text_flash;
            this.text_flash_recovery = text_flash_recovery;
        }
    }
阅读 1.3k
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题