mirror of
https://github.com/geometer/FBReaderJ.git
synced 2025-10-03 17:59:33 +02:00
Merge branch 'master' into master-catalogs
This commit is contained in:
commit
fcde2855cf
3 changed files with 57 additions and 78 deletions
|
@ -53,6 +53,50 @@ public abstract class DictionaryUtil {
|
||||||
private static Map<PackageInfo,Integer> ourInfos =
|
private static Map<PackageInfo,Integer> ourInfos =
|
||||||
Collections.synchronizedMap(new LinkedHashMap<PackageInfo,Integer>());
|
Collections.synchronizedMap(new LinkedHashMap<PackageInfo,Integer>());
|
||||||
|
|
||||||
|
public static class PackageInfo {
|
||||||
|
public final String Id;
|
||||||
|
public final String PackageName;
|
||||||
|
public final String ClassName;
|
||||||
|
public final String Title;
|
||||||
|
|
||||||
|
public final String IntentAction;
|
||||||
|
public final String IntentKey;
|
||||||
|
public final String IntentDataPattern;
|
||||||
|
|
||||||
|
PackageInfo(String id, String packageName, String className, String title, String intentAction, String intentKey, String intentDataPattern) {
|
||||||
|
Id = id;
|
||||||
|
PackageName = packageName;
|
||||||
|
ClassName = className;
|
||||||
|
Title = title;
|
||||||
|
|
||||||
|
IntentAction = intentAction;
|
||||||
|
IntentKey = intentKey;
|
||||||
|
IntentDataPattern = intentDataPattern;
|
||||||
|
}
|
||||||
|
|
||||||
|
Intent getDictionaryIntent(String text) {
|
||||||
|
final Intent intent = new Intent(IntentAction);
|
||||||
|
if (PackageName != null) {
|
||||||
|
if (ClassName != null) {
|
||||||
|
String cls = ClassName;
|
||||||
|
if (cls.startsWith(".")) {
|
||||||
|
cls = PackageName + cls;
|
||||||
|
}
|
||||||
|
intent.setComponent(new ComponentName(
|
||||||
|
PackageName, cls
|
||||||
|
));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
|
||||||
|
text = IntentDataPattern.replace("%s", text);
|
||||||
|
if (IntentKey != null) {
|
||||||
|
return intent.putExtra(IntentKey, text);
|
||||||
|
} else {
|
||||||
|
return intent.setData(Uri.parse(text));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private static class InfoReader extends ZLXMLReaderAdapter {
|
private static class InfoReader extends ZLXMLReaderAdapter {
|
||||||
@Override
|
@Override
|
||||||
public boolean dontCacheAttributeValues() {
|
public boolean dontCacheAttributeValues() {
|
||||||
|
@ -111,7 +155,7 @@ public abstract class DictionaryUtil {
|
||||||
null,
|
null,
|
||||||
attributes.getValue("pattern")
|
attributes.getValue("pattern")
|
||||||
);
|
);
|
||||||
if (PackageUtil.canBeStarted(myContext, getDictionaryIntent(info, "test"), false)) {
|
if (PackageUtil.canBeStarted(myContext, info.getDictionaryIntent("test"), false)) {
|
||||||
ourInfos.put(info, FLAG_SHOW_AS_DICTIONARY | FLAG_INSTALLED_ONLY);
|
ourInfos.put(info, FLAG_SHOW_AS_DICTIONARY | FLAG_INSTALLED_ONLY);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -120,11 +164,11 @@ public abstract class DictionaryUtil {
|
||||||
}
|
}
|
||||||
|
|
||||||
private static class BitKnightsInfoReader extends ZLXMLReaderAdapter {
|
private static class BitKnightsInfoReader extends ZLXMLReaderAdapter {
|
||||||
private final Context mContext;
|
private final Context myContext;
|
||||||
private int mCounter;
|
private int myCounter;
|
||||||
|
|
||||||
BitKnightsInfoReader(Context context) {
|
BitKnightsInfoReader(Context context) {
|
||||||
mContext = context;
|
myContext = context;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -136,7 +180,7 @@ public abstract class DictionaryUtil {
|
||||||
public boolean startElementHandler(String tag, ZLStringMap attributes) {
|
public boolean startElementHandler(String tag, ZLStringMap attributes) {
|
||||||
if ("dictionary".equals(tag)) {
|
if ("dictionary".equals(tag)) {
|
||||||
final PackageInfo info = new PackageInfo(
|
final PackageInfo info = new PackageInfo(
|
||||||
"BK" + mCounter ++,
|
"BK" + myCounter ++,
|
||||||
attributes.getValue("package"),
|
attributes.getValue("package"),
|
||||||
"com.bitknights.dict.ShareTranslateActivity",
|
"com.bitknights.dict.ShareTranslateActivity",
|
||||||
attributes.getValue("title"),
|
attributes.getValue("title"),
|
||||||
|
@ -144,7 +188,7 @@ public abstract class DictionaryUtil {
|
||||||
null,
|
null,
|
||||||
"%s"
|
"%s"
|
||||||
);
|
);
|
||||||
if (PackageUtil.canBeStarted(mContext, getDictionaryIntent(info, "test"), false)) {
|
if (PackageUtil.canBeStarted(myContext, info.getDictionaryIntent("test"), false)) {
|
||||||
ourInfos.put(info, FLAG_SHOW_AS_DICTIONARY | FLAG_INSTALLED_ONLY);
|
ourInfos.put(info, FLAG_SHOW_AS_DICTIONARY | FLAG_INSTALLED_ONLY);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -201,7 +245,7 @@ public abstract class DictionaryUtil {
|
||||||
installedPackages.contains(info.PackageName)) {
|
installedPackages.contains(info.PackageName)) {
|
||||||
list.add(info);
|
list.add(info);
|
||||||
} else if (!notInstalledPackages.contains(info.PackageName)) {
|
} else if (!notInstalledPackages.contains(info.PackageName)) {
|
||||||
if (PackageUtil.canBeStarted(context, getDictionaryIntent(info, "test"), false)) {
|
if (PackageUtil.canBeStarted(context, info.getDictionaryIntent("test"), false)) {
|
||||||
list.add(info);
|
list.add(info);
|
||||||
installedPackages.add(info.PackageName);
|
installedPackages.add(info.PackageName);
|
||||||
} else {
|
} else {
|
||||||
|
@ -252,30 +296,6 @@ public abstract class DictionaryUtil {
|
||||||
return firstInfo();
|
return firstInfo();
|
||||||
}
|
}
|
||||||
|
|
||||||
private static Intent getDictionaryIntent(String text, boolean singleWord) {
|
|
||||||
return getDictionaryIntent(getCurrentDictionaryInfo(singleWord), text);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static Intent getDictionaryIntent(PackageInfo dictionaryInfo, String text) {
|
|
||||||
final Intent intent = new Intent(dictionaryInfo.IntentAction);
|
|
||||||
if (dictionaryInfo.PackageName != null) {
|
|
||||||
String cls = dictionaryInfo.ClassName;
|
|
||||||
if (cls != null && cls.startsWith(".")) {
|
|
||||||
cls = dictionaryInfo.PackageName + cls;
|
|
||||||
}
|
|
||||||
intent.setComponent(new ComponentName(
|
|
||||||
dictionaryInfo.PackageName, cls
|
|
||||||
));
|
|
||||||
}
|
|
||||||
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
|
|
||||||
text = dictionaryInfo.IntentDataPattern.replace("%s", text);
|
|
||||||
if (dictionaryInfo.IntentKey != null) {
|
|
||||||
return intent.putExtra(dictionaryInfo.IntentKey, text);
|
|
||||||
} else {
|
|
||||||
return intent.setData(Uri.parse(text));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void openTextInDictionary(Activity activity, String text, boolean singleWord, int selectionTop, int selectionBottom) {
|
public static void openTextInDictionary(Activity activity, String text, boolean singleWord, int selectionTop, int selectionBottom) {
|
||||||
if (singleWord) {
|
if (singleWord) {
|
||||||
int start = 0;
|
int start = 0;
|
||||||
|
@ -289,7 +309,7 @@ public abstract class DictionaryUtil {
|
||||||
}
|
}
|
||||||
|
|
||||||
final PackageInfo info = getCurrentDictionaryInfo(singleWord);
|
final PackageInfo info = getCurrentDictionaryInfo(singleWord);
|
||||||
final Intent intent = getDictionaryIntent(info, text);
|
final Intent intent = info.getDictionaryIntent(text);
|
||||||
try {
|
try {
|
||||||
if ("ColorDict".equals(info.Id)) {
|
if ("ColorDict".equals(info.Id)) {
|
||||||
final DisplayMetrics metrics = new DisplayMetrics();
|
final DisplayMetrics metrics = new DisplayMetrics();
|
||||||
|
@ -319,7 +339,8 @@ public abstract class DictionaryUtil {
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void installDictionaryIfNotInstalled(final Activity activity, boolean singleWord) {
|
public static void installDictionaryIfNotInstalled(final Activity activity, boolean singleWord) {
|
||||||
if (PackageUtil.canBeStarted(activity, getDictionaryIntent("test", singleWord), false)) {
|
final PackageInfo info = getCurrentDictionaryInfo(singleWord);
|
||||||
|
if (PackageUtil.canBeStarted(activity, info.getDictionaryIntent("test"), false)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
final PackageInfo dictionaryInfo = getCurrentDictionaryInfo(singleWord);
|
final PackageInfo dictionaryInfo = getCurrentDictionaryInfo(singleWord);
|
||||||
|
|
|
@ -1,42 +0,0 @@
|
||||||
/*
|
|
||||||
* Copyright (C) 2010-2013 Geometer Plus <contact@geometerplus.com>
|
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License as published by
|
|
||||||
* the Free Software Foundation; either version 2 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program; if not, write to the Free Software
|
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
||||||
* 02110-1301, USA.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package org.geometerplus.android.fbreader;
|
|
||||||
|
|
||||||
public class PackageInfo {
|
|
||||||
public final String Id;
|
|
||||||
public final String PackageName;
|
|
||||||
public final String ClassName;
|
|
||||||
public final String Title;
|
|
||||||
|
|
||||||
public final String IntentAction;
|
|
||||||
public final String IntentKey;
|
|
||||||
public final String IntentDataPattern;
|
|
||||||
|
|
||||||
PackageInfo(String id, String packageName, String className, String title, String intentAction, String intentKey, String intentDataPattern) {
|
|
||||||
Id = id;
|
|
||||||
PackageName = packageName;
|
|
||||||
ClassName = className;
|
|
||||||
Title = title;
|
|
||||||
|
|
||||||
IntentAction = intentAction;
|
|
||||||
IntentKey = intentKey;
|
|
||||||
IntentDataPattern = intentDataPattern;
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -26,12 +26,12 @@ import android.content.Context;
|
||||||
import org.geometerplus.zlibrary.core.options.ZLStringOption;
|
import org.geometerplus.zlibrary.core.options.ZLStringOption;
|
||||||
import org.geometerplus.zlibrary.core.resources.ZLResource;
|
import org.geometerplus.zlibrary.core.resources.ZLResource;
|
||||||
|
|
||||||
import org.geometerplus.android.fbreader.PackageInfo;
|
import org.geometerplus.android.fbreader.DictionaryUtil;
|
||||||
|
|
||||||
class DictionaryPreference extends ZLStringListPreference {
|
class DictionaryPreference extends ZLStringListPreference {
|
||||||
private final ZLStringOption myOption;
|
private final ZLStringOption myOption;
|
||||||
|
|
||||||
DictionaryPreference(Context context, ZLResource resource, String resourceKey, ZLStringOption dictionaryOption, List<PackageInfo> infos) {
|
DictionaryPreference(Context context, ZLResource resource, String resourceKey, ZLStringOption dictionaryOption, List<DictionaryUtil.PackageInfo> infos) {
|
||||||
super(context, resource, resourceKey);
|
super(context, resource, resourceKey);
|
||||||
|
|
||||||
myOption = dictionaryOption;
|
myOption = dictionaryOption;
|
||||||
|
@ -39,7 +39,7 @@ class DictionaryPreference extends ZLStringListPreference {
|
||||||
final String[] values = new String[infos.size()];
|
final String[] values = new String[infos.size()];
|
||||||
final String[] texts = new String[infos.size()];
|
final String[] texts = new String[infos.size()];
|
||||||
int index = 0;
|
int index = 0;
|
||||||
for (PackageInfo i : infos) {
|
for (DictionaryUtil.PackageInfo i : infos) {
|
||||||
values[index] = i.Id;
|
values[index] = i.Id;
|
||||||
texts[index] = i.Title;
|
texts[index] = i.Title;
|
||||||
++index;
|
++index;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue