本文整理了Java中com.koolearn.klibrary.text.view.style.ZLTextNGStyleDescription
类的一些代码示例,展示了ZLTextNGStyleDescription
类的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZLTextNGStyleDescription
类的具体详情如下:
包路径:com.koolearn.klibrary.text.view.style.ZLTextNGStyleDescription
类名称:ZLTextNGStyleDescription
暂无
代码示例来源:origin: Jiangzqts/EpubRead
ZLTextNGStyleDescription(String selector, Map<String,String> valueMap) {
Name = valueMap.get("kooreader-name");
FontFamilyOption = createOption(selector, "font-family", valueMap);
FontSizeOption = createOption(selector, "font-size", valueMap);
FontWeightOption = createOption(selector, "font-weight", valueMap);
FontStyleOption = createOption(selector, "font-style", valueMap);
TextDecorationOption = createOption(selector, "text-decoration", valueMap);
HyphenationOption = createOption(selector, "hyphens", valueMap);
MarginTopOption = createOption(selector, "margin-top", valueMap);
MarginBottomOption = createOption(selector, "margin-bottom", valueMap);
MarginLeftOption = createOption(selector, "margin-left", valueMap);
MarginRightOption = createOption(selector, "margin-right", valueMap);
TextIndentOption = createOption(selector, "text-indent", valueMap);
AlignmentOption = createOption(selector, "text-align", valueMap);
VerticalAlignOption = createOption(selector, "vertical-align", valueMap);
LineHeightOption = createOption(selector, "line-height", valueMap);
}
代码示例来源:origin: ydcx/KooReader
@Override
public byte getAlignment() {
final byte defined = myDescription.getAlignment();
if (defined != ZLTextAlignmentType.ALIGN_UNDEFINED) {
return defined;
}
return Parent.getAlignment();
}
代码示例来源:origin: Jiangzqts/EpubRead
@Override
protected int getRightPaddingInternal(ZLTextMetrics metrics, int fontSize) {
return myDescription.getRightPadding(metrics, Parent.getRightPadding(metrics), fontSize);
}
@Override
代码示例来源:origin: ydcx/KooReader
@Override
protected int getLeftPaddingInternal(ZLTextMetrics metrics, int fontSize) {
return myDescription.getLeftPadding(metrics, Parent.getLeftPadding(metrics), fontSize);
}
@Override
代码示例来源:origin: Jiangzqts/EpubRead
@Override
protected int getRightMarginInternal(ZLTextMetrics metrics, int fontSize) {
return myDescription.getRightMargin(metrics, Parent.getRightMargin(metrics), fontSize);
}
@Override
代码示例来源:origin: ydcx/KooReader
@Override
protected int getFirstLineIndentInternal(ZLTextMetrics metrics, int fontSize) {
return myDescription.getFirstLineIndent(metrics, Parent.getFirstLineIndent(metrics), fontSize);
}
@Override
代码示例来源:origin: Jiangzqts/EpubRead
@Override
public boolean allowHyphenations() {
switch (myDescription.allowHyphenations()) {
case TRUE:
return true;
case FALSE:
return false;
default:
return Parent.allowHyphenations();
}
}
代码示例来源:origin: ydcx/KooReader
@Override
protected int getLeftMarginInternal(ZLTextMetrics metrics, int fontSize) {
return myDescription.getLeftMargin(metrics, Parent.getLeftMargin(metrics), fontSize);
}
@Override
代码示例来源:origin: ydcx/KooReader
@Override
protected int getFontSizeInternal(ZLTextMetrics metrics) {
return myDescription.getFontSize(metrics, Parent.getFontSize(metrics));
}
代码示例来源:origin: Jiangzqts/EpubRead
myDescriptionMap.put(
Integer.valueOf(myCurrentMap.get("fbreader-id")),
new ZLTextNGStyleDescription(mySelector, myCurrentMap)
);
} catch (Exception e) {
代码示例来源:origin: Jiangzqts/EpubRead
@Override
protected int getLeftPaddingInternal(ZLTextMetrics metrics, int fontSize) {
return myDescription.getLeftPadding(metrics, Parent.getLeftPadding(metrics), fontSize);
}
@Override
代码示例来源:origin: ydcx/KooReader
@Override
protected int getRightMarginInternal(ZLTextMetrics metrics, int fontSize) {
return myDescription.getRightMargin(metrics, Parent.getRightMargin(metrics), fontSize);
}
@Override
代码示例来源:origin: Jiangzqts/EpubRead
@Override
protected int getFirstLineIndentInternal(ZLTextMetrics metrics, int fontSize) {
return myDescription.getFirstLineIndent(metrics, Parent.getFirstLineIndent(metrics), fontSize);
}
@Override
代码示例来源:origin: ydcx/KooReader
@Override
public boolean allowHyphenations() {
switch (myDescription.allowHyphenations()) {
case TRUE:
return true;
case FALSE:
return false;
default:
return Parent.allowHyphenations();
}
}
代码示例来源:origin: Jiangzqts/EpubRead
@Override
protected int getLeftMarginInternal(ZLTextMetrics metrics, int fontSize) {
return myDescription.getLeftMargin(metrics, Parent.getLeftMargin(metrics), fontSize);
}
@Override
代码示例来源:origin: Jiangzqts/EpubRead
@Override
protected int getFontSizeInternal(ZLTextMetrics metrics) {
return myDescription.getFontSize(metrics, Parent.getFontSize(metrics));
}
代码示例来源:origin: ydcx/KooReader
myDescriptionMap.put(
Integer.valueOf(myCurrentMap.get("fbreader-id")),
new ZLTextNGStyleDescription(mySelector, myCurrentMap)
);
} catch (Exception e) {
代码示例来源:origin: Jiangzqts/EpubRead
@Override
public byte getAlignment() {
final byte defined = myDescription.getAlignment();
if (defined != ZLTextAlignmentType.ALIGN_UNDEFINED) {
return defined;
}
return Parent.getAlignment();
}
代码示例来源:origin: ydcx/KooReader
@Override
protected int getRightPaddingInternal(ZLTextMetrics metrics, int fontSize) {
return myDescription.getRightPadding(metrics, Parent.getRightPadding(metrics), fontSize);
}
@Override
代码示例来源:origin: ydcx/KooReader
ZLTextNGStyleDescription(String selector, Map<String,String> valueMap) {
Name = valueMap.get("kooreader-name");
FontFamilyOption = createOption(selector, "font-family", valueMap);
FontSizeOption = createOption(selector, "font-size", valueMap);
FontWeightOption = createOption(selector, "font-weight", valueMap);
FontStyleOption = createOption(selector, "font-style", valueMap);
TextDecorationOption = createOption(selector, "text-decoration", valueMap);
HyphenationOption = createOption(selector, "hyphens", valueMap);
MarginTopOption = createOption(selector, "margin-top", valueMap);
MarginBottomOption = createOption(selector, "margin-bottom", valueMap);
MarginLeftOption = createOption(selector, "margin-left", valueMap);
MarginRightOption = createOption(selector, "margin-right", valueMap);
TextIndentOption = createOption(selector, "text-indent", valueMap);
AlignmentOption = createOption(selector, "text-align", valueMap);
VerticalAlignOption = createOption(selector, "vertical-align", valueMap);
LineHeightOption = createOption(selector, "line-height", valueMap);
}
内容来源于网络,如有侵权,请联系作者删除!