mirror of
https://github.com/libretro/RetroArch
synced 2025-03-31 10:20:41 +00:00
50 lines
997 B
Java
50 lines
997 B
Java
package org.retroarch.browser;
|
|
|
|
import java.io.File;
|
|
import java.io.IOException;
|
|
|
|
import android.content.Context;
|
|
import android.graphics.drawable.Drawable;
|
|
|
|
class ModuleWrapper implements IconAdapterItem {
|
|
public final File file;
|
|
private ConfigFile config;
|
|
|
|
public ModuleWrapper(Context aContext, File aFile, ConfigFile config) throws IOException {
|
|
file = aFile;
|
|
this.config = config;
|
|
}
|
|
|
|
@Override
|
|
public boolean isEnabled() {
|
|
return true;
|
|
}
|
|
|
|
@Override
|
|
public String getText() {
|
|
String stripped = file.getName().replace(".so", "");
|
|
if (config.keyExists(stripped)) {
|
|
return config.getString(stripped);
|
|
} else
|
|
return stripped;
|
|
}
|
|
|
|
@Override
|
|
public String getSubText() {
|
|
String stripped = file.getName().replace(".so", "") + "_system";
|
|
if (config.keyExists(stripped)) {
|
|
return config.getString(stripped);
|
|
} else
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public int getIconResourceId() {
|
|
return 0;
|
|
}
|
|
|
|
@Override
|
|
public Drawable getIconDrawable() {
|
|
return null;
|
|
}
|
|
} |