top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Font corruption issue on ICS

0 votes
109 views

We are seeing this problem quite a lot on our platform: https://code.google.com/p/android/issues/detail?id=29279 [1]
The font gets corrupted sometimes. Does anyone know of a solution for this (upgrading to JB is not an option at this point).

posted Jun 10, 2013 by anonymous

Looking for an answer?  Promote on:
Facebook Share Button Twitter Share Button LinkedIn Share Button

Similar Questions
+1 vote

I wanted to understand NFC architecture in AOSP code. Primarily a block diagram interaction between NFC hardware with Nfc application in /packages/Nfc over JNI. I can see that the JNI portion of Nfc app is trying to connect via some socket.

Not able to find out the other side of this socket connection. I will really appreciate if someone can point me to any document or blog.

+1 vote

I'm having an issue where the fonts exported from gimp are displayed inverted after running through mk font. Whats the procedure for c compatible to create fonts for mk font in recovery?

+1 vote

Being a learner. I would like to know that "my code sample below crash the application? How would we can modify the code to avoid this problem?", which has become difficult to debug. I hope any tech developer help me in resolving this issue

Intent sendIntent = new Intent();
sendIntent.setAction(Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_TEXT, textMessage);
sendIntent.setType(HTTP.PLAIN_TEXT_TYPE); // "text/plain" MIME type
startActivity(sendIntent);

0 votes

Hi,Recently I made an app which takes photo and set to an ImageView in android.In samsung phone its orientation is 90 while camera intent opens so I used ExifInterface with four case 90/180/270/0 with normal case (0 degree) but when I compiled this method,its working perfect in all samsung device which is setting image after reverse rotate 90 to ImageView but not with others like moto/redmi/asus/karbonn I checked on each phone and there is an error that they are not getting bitmap.but when I removed ExifInterface and orientation,it started to work with all devices.but same issue with samsung device that setting image in ImageView with 90 degree orientation.
So I decided to use switch for samsung and other device so how can I know whether app is installed in samsung device or others using java?

+1 vote

Current AudioFlinger at stereo 16-bit PCM at 44.1 kHz( ˆ’32,768 to +32,767) is a little bit too out-dated. The audio quality is degraded, especially in lossless have been downsample. In addition, more and more HQ record is launched, not only at CD level. So, it is necessary to get into 24-bit 96kHz( ˆ’8,388,608 to +8,388,607), also get advantage on high SNR too.

I don't know the major obstacle of being upgrade to hi-res audio. I guess hardware limit, bad AD/DA converter, hard to implement on software side,etc.

...