- Posts: 7
- Thank you received: 0
Microsoft Windows Phone 8.1 support ends (13 Jul 2017)
Microsoft has ended support for Windows Phone 8.1
Here you should submit your bug reports with logcat.
Complex Mathematical Signs cannot be seen
IP: 192.168.0.70
12 years 9 months ago #4725
by fainted
Replied by fainted on topic Complex Mathematical Signs cannot be seen
currently only 2.9.5c is available for download, where to download 2.9.5d??
IP: 192.168.0.70
12 years 9 months ago - 12 years 9 months ago #4726
by fainted
Replied by fainted on topic Complex Mathematical Signs cannot be seen
following is the screenshot after integrating / updating pdf library (libs/*.* , all the content of libs directory)
do we need to update other java classes, to make it work cause as they make native calls and have the native library basically all the contents of libs directory with newer library.
the version currently is 2.9.5c from HERE
as it seems the problem is not fixed.
do we need to update other java classes, to make it work cause as they make native calls and have the native library basically all the contents of libs directory with newer library.
the version currently is 2.9.5c from HERE
as it seems the problem is not fixed.
Last edit: 12 years 9 months ago by teniaujkk.
IP: 192.168.0.70
12 years 9 months ago - 12 years 9 months ago #4727
by radaee
Replied by radaee on topic Complex Mathematical Signs cannot be seen
these codes(part) in Global.Init() can fix this problem:
it use "Roboto-Regular" as default font.
it use "Roboto-Regular" as default font.
Code:
// add system external fonts.
fontfileListStart();
fontfileListAdd("/system/fonts/DroidSans.ttf");
fontfileListAdd("/system/fonts/Roboto-Regular.ttf");
fontfileListAdd("/system/fonts/DroidSansFallback.ttf");
fontfileListEnd();
int face_first = 0;
int face_count = getFaceCount();
String face_name = null;
while (face_first < face_count) {
face_name = getFaceName(face_first);
if (face_name != null)
break;
face_first++;
}
// set default font for fixed width font.
if (!setDefaultFont(null, "Roboto-Regular", true) && face_name != null)
{
if( !setDefaultFont(null, "DroidSans", true) )
setDefaultFont(null, face_name, true);
}
// set default font for non-fixed width font.
if (!setDefaultFont(null, "Roboto-Regular", false) && face_name != null)
{
if( !setDefaultFont(null, "DroidSans", false) )
setDefaultFont(null, face_name, false);
}
// set default font for Chinese simplified language.
if (!setDefaultFont("GB1", "DroidSansFallback", true)
&& face_name != null)
setDefaultFont(null, face_name, true);
if (!setDefaultFont("GB1", "DroidSansFallback", false)
&& face_name != null)
setDefaultFont(null, face_name, false);
// set default font for Chinese traditional language.
if (!setDefaultFont("CNS1", "DroidSansFallback", true)
&& face_name != null)
setDefaultFont(null, face_name, true);
if (!setDefaultFont("CNS1", "DroidSansFallback", false)
&& face_name != null)
setDefaultFont(null, face_name, false);
// set default font for Japanese.
if (!setDefaultFont("Japan1", "DroidSansFallback", true)
&& face_name != null)
setDefaultFont(null, face_name, true);
if (!setDefaultFont("Japan1", "DroidSansFallback", false)
&& face_name != null)
setDefaultFont(null, face_name, false);
// set default font for Korean.
if (!setDefaultFont("Korea1", "DroidSansFallback", true)
&& face_name != null)
setDefaultFont(null, face_name, true);
if (!setDefaultFont("Korea1", "DroidSansFallback", false)
&& face_name != null)
setDefaultFont(null, face_name, false);
if (!setAnnotFont("DroidSansFallback") && face_name != null) {
setAnnotFont(face_name);
}
// set text font for edit-box and combo-box editing.
if (!setAnnotFont("DroidSansFallback") && face_name != null) {
setAnnotFont(face_name);
}
// set configure to default value
default_config();
Last edit: 12 years 9 months ago by .
IP: 192.168.0.70
12 years 9 months ago #4728
by fainted
Replied by fainted on topic Complex Mathematical Signs cannot be seen
that solved the problem, thank you !!
Time to create page: 0.381 seconds