More small font of J2ME on Blackberry "BOLD"? small proportional, plain?

Hello, what is the smallest police achievable J2ME on the Blackberry Bold? I ask this, because

style = "plain" face = "proportional" size = "small".

seems to be already very large and very bold? Is there a way to get a smaller font, without leaving the environment "J2ME"?

I would first like to say Java and GNU license gave me a very big heart. This whole community has helped me tremendously to learn how to code, and give in return is the least I could do. I hope that the community in turn help me when I reached the rough places in the future. Don't forget I've been working on this code and it took me hours of exhaustian and works well and I am now it give for free, so please do the same for others. It is the idea not the code that makes money.

That said, I present to you:

How to solve the problem of police of blackberry in 5 minutes of coding a moped.

(please link to this topic as much as possible)

Step 1: Analyze what is happening between the 2 separate API and why it is so difficult to change fonts.

Step 2: Ask how are packages come into conflict with each other?

Step 3: Ask you... can I change the font in general?

Step 4: Run the text following preference somewhere in the constructor... and somewhere off of the paint method.

final FontFamily fontFamily[] = FontFamily.getFontFamilies();

    font10 = fontFamily[0].getFont(FontFamily.CBTF_FONT, 16);
    Font.setDefaultFont(font10);

Keep in mind that you must have the good net_rim_api.jar installed (or the appropriate folder and configuration via the Toolbox correctly)... and in my case, the following code is at the top of my class file and I use an external library on my toolbox.

import net.rim.device.api.ui.Font;
import net.rim.device.api.ui.FontFamily;

now, it's just a natural function used for user interface of blackberry and midlets applications using the Blackberry net_rim_api.jar as an external module.

Those of you who are running a blackberrycanvas or a touch event for the blackberry storm should automatically know what I speak. Send me an Email if you are at all confused, that I'll get back to you.

Anyway go...

Run this natural function and go ahead and test it using a common g.drawString ("Hello World", 20,20, g.TOP | g.LEFT);

Here you should notice that your policy has changed the font specified by Font.setDefaultFont (font10);

This is because the static method changes all fonts... including police BlackBerryMenu I might add.

Then, perform the following steps:

Step 5: Ask yourself... but what happens if I separated from the places that need separate policies?

Good question... I had this one for awhile and found a brilliant answer.

Note the following points:

Font BBFont = javax.microedition.lcdui.Font.getDefaultFont();

Here is what just happened, the above code catches the current default font defined for the lcdui police. Or in our case, the police of the Midlet. As I looked into it... There is no method to create a nice font that corresponds to the blackberry one again... but after calling

Font.setDefaultFont (font10);

in this case the police is referenced as...

net.rim.device.api.ui.Font

It amends the police for both the system and the

javax.microedition.lcdui.Font

It is signifigant for us because now, because we can store the new settings, we can make the magic happen.

Step 6: Perform magic with the fonts.

Store any desired blackberry font using the following...

final FontFamily fontFamily[] = FontFamily.getFontFamilies();

    Font font10 = fontFamily[4].getFont(FontFamily.CBTF_FONT, 16);
    Font.setDefaultFont(font10);
    javax.microedition.lcdui.Font bbfont = javax.microedition.lcdui.Font.getDefaultFont();

do not hesitate to make the police a variable, you can reference from the whole class... or keep it in another class if you wish.

then do this in the paint method...

protected void paint(Graphics g){

g.setFont(bbfont);
g.drawString("Hello World",20,20,g.TOP|g.LEFT);

}

You should find that the police has changed very nicely your new font... here make a function out of it, change the fonts to the top.

Step 7: bask in the glory of magic.

So you tell me if I call Font.setDefaultFont (myfont);

and I use a blackberry police... it will change the current font... then I can go then enter this police and store it and then call at a later date, and it will use this font?

I mean that Times New Roman!

Well, if they have Times New Roman can be my guest...

but later I want to black Ariel...

Yes same process be my guest...

But man according to the forums, I can't do that...

Yes, and you can quote me on this one there according to JavaLover53 you can use what font you want, as long as you do the police first... and it is strongly recommended that you do outside the paint function and you store fonts in one easy to access place in memory, namely the Summit also recommended

import net.rim.device.api.ui.Font;import net.rim.device.api.ui.FontFamily;import javax.microedition.lcdui.*;public class BBFontCanvas extends Canvas {javax.microedition.lcdui.Font timesnewroman;javax.microedition.lcdui.Font bbalphasans;

public BBFontCanvas(){  final FontFamily fontFamily[] = FontFamily.getFontFamilies();

   font10 = fontFamily[4].getFont(FontFamily.CBTF_FONT, 16); Font.setDefaultFont(font10);  bbalphasans = javax.microedition.lcdui.Font.getDefaultFont();

//have fun and make another font...      font10 = fontFamily[0].getFont(FontFamily.CBTF_FONT, 20); Font.setDefaultFont(font10);      timesnewroman = javax.microedition.lcdui.Font.getDefaultFont();}

public void changeFont(int fontnum){

//i figure from here you can do a switch statement to change the font...//or idk perhaps just do it by fontnum//you guys gotta code that up haha.//it'll probably look like this though...   //public void changeFont(int fontnum,javax.microedition.lcdui.Font thefont){}//or maybe you wanta return a new font so....//public javax.microedition.lcdui.Font getNewFont(int fontnum,javax.microedition.lcdui.Font thefont){}

//then make like a switch statement, and then call this to establish the fonts you want in advance and store //these fonts use them for classes you have for classes you've made like void setFont(Font myfont); <--- in//that case your midlet class never even heard of the blackberry font so you're passing a normal lcdui font.//anyways point being as long as g.setFont(myfont); has the proper font this stuff works. :-)

 font10 = fontFamily[2].getFont(FontFamily.CBTF_FONT, 16); Font.setDefaultFont(font10);  bbalphasans = javax.microedition.lcdui.Font.getDefaultFont();}     public void paint(Graphics g){     g.setColor(0,0,0);     g.fillRect(500,500);     g.setColor(255,255,255);

//set the font to bbalphasans or in this case fontFamily[4] from the constructor...     g.setFont(bbalphasans);     g.drawString("Hello World",20,20,g.TOP|g.LEFT);     }}

and for those of you who don't like comments... just look at this code instead...

import net.rim.device.api.ui.Font;
import net.rim.device.api.ui.FontFamily;
import javax.microedition.lcdui.*;
public class BBFontCanvas extends Canvas {
javax.microedition.lcdui.Font timesnewroman;
javax.microedition.lcdui.Font bbalphasans;

public BBFontCanvas(){
    final FontFamily fontFamily[] = FontFamily.getFontFamilies();

    font10 = fontFamily[4].getFont(FontFamily.CBTF_FONT, 16);
    Font.setDefaultFont(font10);
    bbalphasans = javax.microedition.lcdui.Font.getDefaultFont();

      font10 = fontFamily[0].getFont(FontFamily.CBTF_FONT, 20);
    Font.setDefaultFont(font10);
      timesnewroman = javax.microedition.lcdui.Font.getDefaultFont();
}

public void changeFont(int fontnum){

    font10 = fontFamily[2].getFont(FontFamily.CBTF_FONT, 16);
    Font.setDefaultFont(font10);
    bbalphasans = javax.microedition.lcdui.Font.getDefaultFont();
}
     public void paint(Graphics g){
     g.setColor(0,0,0);
     g.fillRect(500,500);
     g.setColor(255,255,255);

     g.setFont(bbalphasans);
     g.drawString("Hello World",20,20,g.TOP|g.LEFT);
     }
}

in any case this is my tutorial police and I currently have surprising good labour code. I am so happy to finally use the blackberry fonts and it proves just everyone and everything that can make an application user interface, unless of course the components made... a midlet can do as well on a blackberry.

They don't call it Java for nothing, if you know the ins and outs, it's like a cup of coffee it'll get you WIRED!

Take advantage and ask me questions if you cannot get the fonts you want. This should solve any problems for those of you who have worked hard on your midlets and problems of police... and for those of you who are lazy... Simply change the default system font, and all will be the police.

-JLover53

Tags: BlackBerry Developers

Similar Questions

  • Battery blackBerry Bold 9900 Smartphones worsens more than 50% after 2406 upgrade

    My battery life Bold 9900 worsened considerably after the recent OS 7.0 Bundle 2406 set to level. I had previously struggled to spend the day on a battery, but in general, I could do it for a day and business general use of electronic mail, of limited calls and not Web browsing. Now, after the recent 2406 upgrade, I get only about 50% as much battery life. In addition, the black box of the small Center with white rotating second hand is now a function that comes back regularly throughout the day, and I had to remove my battery to restart my BlackBerry much more often. I've since removed all applications, cut back on all the other battery draining features (screen brightness, wifi, Bluetooth, gps, etc), moved to 2G to extend my battery life. I was already unhappy with the bad battery BlackBerry Bold 9900 life, but after this last update 2406, it is unacceptable for a professional use when it only works for 1/2 day. I hope it's a question of battery RIM known for Bold 9900 that is processed quickly. Otherwise, I am one of the many who will have to move to a more acceptable solution for phone smart business in a perspective of battery life. Thank you.

    Well, I have implemented battery BlackBerry 9900 technical of economy in this forum, and to my surprise, he solved all much more than I expected. My last load battery Bold 9900 lasted 6 days/86 hours (compared to less than 1/2 day) during normal use of business and weekend for the phone calls, emails, texts and the bbm, exclusion using the internet or applications. I moved 2 G + 3 g to 2G only, off all the apps (especially GPS, Google sync and social networks), turned down the brightness of my screen and shorten the waiting time, calendar, disabled wifi and bluetooth, etc. Thanks for all the comments in the forum. They worked. Now I will be slowly adding some applications and using 3 G on the internet once again, and I will more closely control my battery drain in the future.

  • BlackBerry Bold 9780 Smartphone keeps poping small clock

    http://supportforums.BlackBerry.com/T5/BlackBerry-bold/why-does-small-clock-face-pop-up/TD-p/188118

    Hi Experts

    I have the bold 9780 keeeps poping small clock, I tried to follow the instructions in the link above, but I couldn't get rid of the clock, could you please say what other steps should I consider for this problem?

    Thank you

    To avoid a freezing response development or late / slow on any BlackBerry, most important practice that you can adopt is to ensure applications CLOSE when you are finished using them.

    If you simply press the Red "end call" key to return to the home screen application is actually open and running in the background. If you do this several times, you will have many apps open and therefore your memory will get used. Lack of memory is the main reason for your BlackBerry slows to a crawl or crashes. If you make a habit of actually use the menu button to close the applications that will at least slow this process memory-clogging. You may still do a battery pull or using the "Quickpull" app from time to time when things get slow.

    To check what applications run on your device in the background, press the Menu key, and then click switching Applications. You will see icons for each application it.

    So now, check your applications running in the background. There are four or five applications that will always run fluently (Messages, Call Logs/phone, BlackBerry Messenger, home screen and the browser; there are other third-party applications such as BeeJive and alerts of BlackBerry that will work also in the bottom that you can not close if you want they work). Ensure that the browser is NOT on an active Web page (open the browser and select the Menu > close). Close all other applications that do not need to be running (the camera or a game you were playing or Google Maps).

  • BlackBerry smartphones is supported for the East Asian languages for the Blackberry Bold 9780 on O2?

    Hello, I hope someone can help me with my problem. I'm new to the whole Blackberry I just bought my first BB camera a few days ago so please understand if I don't know what words are in the world of Blackberry. The questions will be in bold.

    So, I recently bought a Blackberry Bold 9780 and I am very satisfied with the overall product. However I was wondering if there was support for the East Asian languages (Chinese, Japanese, Korean etc) for my 9780 BB which is on O2 UK.

    Right now, in my languages options, I can only entry for most European languages (English, Spanish, French, etc.) There are no options for languages of East Asia at all. When I try to display all messages or go on the browser which are languages of East Asia, I don't see one set of black boxes.

    I know there are software updates to update your device to take charge of specific languages, so I checked the software downloads page that interests me.

    O2 - UK users, they have two packages:

    -BlackBerry Handheld Software v6.0.0.905 (all languages)

    Package Version: 6.0.0.905
    Composed of:

    • Applications: 6.0.0.294
    • Software platform: 6.5.0.54
    • File name: 9780AllLang_PBr6.0.0_rel905_PL6.5.0.54_A6.0.0.294_O2_UK.exe
    • File size: 180,72 MB

    -BlackBerry Handheld Software v6.0.0.0905 (Multilingual)

    Package Version: 6.0.0.905
    Composed of:

    • Applications: 6.0.0.294
    • Software platform: 6.5.0.54
    • File name: 9780jAllLang_PBr6.0.0_rel905_PL6.5.0.54_A6.0.0.294_O2_UK.exe
    • File size: 185,61 MB

    Then How do I know which package I currently installed on my device because the application number and the number of software are identical.

    On my device it details shows: v6.0.0.294, (905 Bundle, platform 6.5.0.54)

    So I wonder if none of the above two packages have the option to enable East Asian language support.

    I'm sure I have the latest update for my camera that I can't update more far depending on the desktop software and my phone. So If I move to another package, how do I go to do?

    I mainly use a MAC, but I can also have access to a PC too. I don't know if it's important, but I think that there is a difference between the Desktop software on each computer that is used to update your software.

    If possible, it is that I would be able to download another package that has the support of another service provider East Asia and update on my own? Or is it too risky because it may crash my machine?

    And my last question, so it is likely that O2 can do in the near future if there is no option for the language support East Asia now,?

    Sorry if I rambled on a bit too much or too many questions. I just want to know if its possible to enable language support is now, otherwise I will waste countless hours looking for a method. I looked to see if there were similar questions, asked the Board of Directors, but none was really specific to my needs.

    A big thank you to everyone who sits reading through this. I appreciate the responses.

    Thank you.

    Do not know if you understand how to do this, but I did these steps and it worked fine:

    1. https://www.blackberry.com/Downloads/contactFormPreload.do?code=7D2A383E54274888B4B73B97E1AAA491&dl=... go here and download the version of v6.0.0.0905 (Multilingual) BlackBerry Handheld Software.

    2 install the downloaded OS on your computer, you need the files of this new OS more later to add multi language support for your BlackBerry device.
    C:\Program Files\Common search in Motion\Shared\Loader Files\9780AllLang_v6.0.0.294_P6.5.0.54
    The CJK.alx is the file that you will use later.

    3. use Desktop Manager to save your BlackBerry (better safe than sorry)

    4. before installation, go to your AppLoader folder, for example C:\Program Files Research In Motion\AppLoader and move the Vendor.xml to a backup directory, if you have kept a copy of the file. The loader.exe allows to load up the AppLoader, follow the instructions in the wizard.

    He automatically gave me a list of applications and languages, if you scroll down see you East Asian languages check those you want that I checked Japanese and Thai language and font support. If you do not see these click on 'Add' at the top and navigate to the CJK.alx file.

    So let the application loader it's thing, after that everything should work.

    Hope this works for you also. I take no responsibility of bricking your phone.

    BlackBerry should be an option to install more languages via the phone.

  • Calendar Windows Sync w / Blackberry "BOLD"

    original title: synchronization

    How to sync with my Blackberry "BOLD" Windows Calendar?

    Althogh written forXP, I think that these procedures will work for Vista as well (as long as you have the Vista-compatible software):http://www.blackberryinsight.com/2007/01/28/how-to-synchronize-my-blackberry-with-my-desktop-computer/.  Where the guidelines of reference Outlook, simply substitte calendar Windows instead (and even for what you want to sync).

    If this does not work, try the Blackberry forums at: http://supportforums.blackberry.com/ where they may be able to offer more help than the synchronization is made by the Blackberry.

    I hope this helps.

    Good luck!

    Lorien - MCSA/MCSE/network + / has + - if this post solves your problem, please click the 'Mark as answer' or 'Useful' button at the top of this message. Marking a post as answer, or relatively useful, you help others find the answer more quickly.

  • BlackBerry bold 9700 does support CLCD 1.1?

    Hello

    I plan to buy a Blackberry Bold 9700 to deploy J2ME MIDLETs. I need to know if 9700 supports CLCD 1.1. I tried to look in various forums in there, but to no avail. Can you help me find out?

    Thank you

    Srikanth

    http://bit.LY/d6WggJ

  • BrowserContentManager behavior (Blackberry "BOLD")

    Hello everyone,

    I'll start with a brief overview of the application.

    We use a small Java application that is calculated from the BrowserContentManager.

    The application is used to force a specific page to load at startup and also react to PUSH messages to navigate to another page when you are prompted by a server.

    The original page is traversed is an ASP.NET form, which when submitted should direct the user to another page with JavaScript simple about it. It worked correctly on all Blackberry devices (the less those I had for the test) with the exception of the Blackberry "BOLD" (I have not tested something later).

    The question I have is that when the user submits the original form just, it returns to the same shape and deletes fields.

    Does anyone know of any change in behavior of the BrowserContentManager I should know about? Or, if there are some parameters on devices that need to be checked?

    I am simulating the problem on the smart phone BlackBerry 9000 v4.6.0.92 - I have a user with the actual device that has the same problem.

    Any help would be fantastic.

    Antony.

    Application.getApplication().invokeLater(new Runnable() {
          public void run() {
             //code should be here
          }
    });
    

    I looked this problem for so long, I'm missing the obvious: I was just being stupid and forgot to use an invokeLater!

    This seems to have fixed. Thank you all.

  • BlackBerry Smartphones battery compatibility blackberry bold 9790

    I tried to get a new battery for my Blackberry Bold 9790. My original battery was 1230 mah JM1. I have orderdthis to a provider. Now, I was sent a new battery for 9900-9930 JM1 series but1500mah. Seller swear it should work. This isn't. Thoughts anyone?

    your welcome, my last words

    whenever we bought phone parts, try to get them on the spot

    even if bought a little cheaper online.  (especially when we bought a lcd/screens)

    some cause after market parts has really low qualities. and sometimes we end up spending

    more on postings to keep sending them back.

  • Smartphones from blackBerry Bold 9780 - need assistance to fix "App Error 603."

    My Blackberry Bold 9780 white screen 'App Error 603' watch and several JVM error for the last two days. I tried to install a software update using Blackberry Desktop Software. The update will install to the point where the camera is supposed to turn it back on. Restarting stalls about 3/4 of the way, therefore impossible to properly install the software update.

    (Before I tried the software update and was able to turn on the phone, I did a deletion of all user installed application security.) In addition, during the installation of the software update, error 507 return temporarily.

    Any advice would be helpful! I use a Mac.

    Thank you.

    Sometimes, when it comes to 507 and errors such as errors in the JAVA virtual machine, you must try and try again when reinstalling the operating system. You are doing the right thing to connect it to your Mac and reinstall the operating system, but if it doesn't work the first time, keep him home. Why it will not install on the first try, I don't know. I know that it took me more than three attempts in the past to reinstall the OS after a mistake of the JVM. And if you get a 507, you don't have any choice but to connect to your Mac and reinstall your operating system.

    Patience is the key in this process in order to keep trying. See you soon.

  • Reader PDF No. Smartphones blackBerry in BlackBerry Bold 9780

    Hello

    I use BlackBerry Bold 9780 and have Documents to Go, leaves to Go and slides to Go to view Word, Excel, and Powerpoint documents respectively. I saw in the new BlackBerry Curve 9220 there is a built-in app named 'Documents to Go '. By which anyone can view the lyrics, Excel and Powerpoint documents with PDF files for free. But I can't able to view PDF files in my Bold 9780 which is more cumbersome and expensive smartphone than the curve 9220.
    That's why I want to know where can I get an app 'Documents to Go' compact for free and which is also a PDF reader.

    Please see my above correction... in my haste, I mistyped the step number for the download of dig through portal. Apology.

    FYI - in the described situation so far, unlocked or not is irrelevant. Any bundle of BONES of carriers can be used on any model BB even number on any other carrier (via the removal of the SELLER. XML files). The BB is unlocked or not has no bearing on this factor. The sole purpose of unlocking is to actually use the BB on a different medium that those for which the BB was built. But even a locked BB may use a different carriers OS package.

    Good luck!

  • BlackBerry Smartphones Blackberry Bold 9700 won't turn on and keeps restarting!

    I only got my Blackberry "BOLD" for about 2 months. The camera was a little funny and don't zoom so I turned my phone off and took out the battery and succeeded him in an attempt to restart the phone. Now, it won't turn!

    When the battery is in the light of the red LED at the top right corner turns on then turns off when the phone starts showing the BLACKBERRY Logo on the screen with the loading bar under. The bar then shows it to load, but almost immediately, it freezes and turns off. She does several times, but I tried to remove and replace the battery several times.

    I'm sure that this is not a problem with the battery, I had only he alleged the night previous and even tried using another battery of my friends BlackBerry to check, but the continuous phone to turn on several occasions, crash, turn off.

    Anyone have a similar problem or know a solution? Thank you!

    Hey guys!

    I managed to fix my blackberry!

    The best and probably the only solution for a blackberry caught in a never-ending cycle of reset / or always show error messages is to perform a "Clean Reload of your Blackberry Device Software"!

    I found 2 websites more useful!

    This site is by Blackberry from Research in Motion themselves who teaches you how to perform a clean reload. It requires for you to have your cable USB Blackberry and Blackberry Manager installed on your computer. There is a clear process of no to no! However, there are some which confused me at first so just to clarify... in step 4 where they ask allows you to check that you don't have the latest version of the software installed... If your software device tab is empty as indicated in step 3, this means that you currently no. SOFTWARE INSTALLED and so should follow the link indicated in step 4 (or pasted below) to download (and install) the latest software for your blackberry phone model and service provider before performing a cleaning charge.

    For a clean reload:

    http://www.BlackBerry.com/BTSC/search.do?cmd=displayKC&docType=kc&externalId=KB11320

    To download the latest version of the device software:

    http://www.BlackBerry.com/BTSC/search.do?cmd=displayKC&docType=kc&externalId=KB12532

    NOTE: When you do a clean refill, you can see that the Blackberry Manager to first show your blackberry as "disconnected." If the Manager continues to install/reload the software for device on your blackberry with no complications, I wouldn't worry too much about not because once the own recharge is over and your device will restart the Blackberry Manager would show so your device as "connected."

    ------------------------------------------------------------------------------------------------------------------------------------------

    The second site (unofficial Blackberry Forum) basically explains / uses the same process but it is a little outdated and I found some differences in the Blackberry Manager software they use and some steps may no longer apply. However, it should be that if you find you have difficulty getting your BlackBerry connected to your Office Manager as constant rebooting CAN cause the device to connect and disconnect continuously, this site can be useful for more of this problem. I personally don't have this problem if I had expected, which can be a result of the latest models of Blackberry devices and software device etc.

    For more of the constant connecting and disconnecting your BlackBerry since the Blackberry Desktop Manager:

    http://CrackBerry.com/BlackBerry-101-lecture-12-how-reload-operating-system-nuked-BlackBerry

    Hope this helps!  x

  • BlackBerry Smartphones Blackberry Bold 9900 froze

    Hello

    My Blackberry Bold 9900 froze today during use. He has done in the past, but I managed to capture more details about what happen this time until it froze. Can you please tell me why it froze and how can I prevent? I'm already doing a reset (alt + shift + delete) every morning when I wake up today at about 6:00 CST.

    Listen to music on bluetooth
    Received a call and it took
    A hung up and went back to the music
    Started to write an e-mail while in a place where the phone was an SOS signal indicator
    Sent the email in SOS
    The music still plays
    I hit either the button mute or track of equipment before and the music stops, the screen froze and have remained frozen since 09:42 at 09:46, which is when I did a restart by using the key combination of alt + shift led +.

    Here's my device information and logs.

    Journal:

    https://www.sugarsync.com/PF/D7620386_2923836_737831

    Info on the device:

    https://www.sugarsync.com/PF/D7620386_2923836_737836

    It took me about an hour to collect all this information, so I hope that someone at Blackberry can at least watch and provide me with a reason why it froze.

    Thank you in advance!

    Karim

    Its been a month I lived the problems with my BB "BOLD". The problems that I had seem related to bluetooth devices I use.

    I stopped using my device bluetooth BackBeat 903 + for about a month and I have almost never experienced problems with my phone more. My phone to freeze about 2 to 3 times a day and after stopping the use of the BackBeat 903 + I feel only device hangs once a week (whenever I have start to abuse the device and have a lot of things running)

    Yesterday I started using the BackBeat 903 + again and freezing devices returned several times a day. I'll assume, for, now that the BackBeat 903 + is not entirely compatible with the Blackberry Bold 9900.

  • BlackBerry smartphone BlackBerry Bold 9900 - drums

    Nice day

    I have a BlackBerry Bold 9900, for almost two years now. It's a great phone. It seems always elegant and it is never out of reach.

    However, recently it started giving problems. It should be fully charged and when I drive to work, the battery will drain while I'm on my way to work, even not half an hour because I took it off charge. I thought that maybe it's the charger, so I got a new. But now, it is even worse. I can not remove it load or it will turn off and try to start again without success. He tries to repeatedly turn itself, but in the middle of loading on the start screen, it would stop again and repeat the same cycle.

    I really like this phone and he can do much more for me, so I don't want to have in this moment of conviviality.

    Wouldn't be the battery that's at the end of his life? Or is there a problem with the operating system or the software?

    I would appreciate a response and advice.

    Thank you in advance!

    WernandSwart wrote:

    Wouldn't be the battery that's at the end of his life?

    It is probably the case.  A typical Li-ion battery (which is what using BlackBerry devices) will be on 300 to 500 charge during his life cycles.  If you are a typical user and load every day (even just the trim to the top), you can see that it is good for about 1 to 2 years.  I exchange your battery before I do anything else about this.

    See you soon.

  • BlackBerry smartphone Blackberry Bold 9900 guard restart every 2 minutes

    Hello

    Here's my problem: today, after unplugging my blackberry to the computer, it has begun to close every minute (I mean, when it restarts, a minute or two after it restarts) and he did for hours!

    The problem is that I can't even try to update the operating system or restore the original configuration that I don't have enough time before his stop!

    I tried to use it without the SIM card, has not changed anything.

    My biggest concern is that I can't do anything because I can't keep it on more than a few minutes!

    Someone has already experienced the same problem? Is there a way to fix this that refer to society (hoping that the warranty has not expired...)?

    Info on the device

    Your operator: SFR (French)

    Model information and the version of the OS: Blackberry Bold 9900

    7,1,0 bundle 2061 (v 7,1,0,714 platform 5,1,0,532)

    Apps and free space

    Nothing to do with the battery, he pulled out several times has not changed anything.

    Not many applications except the classic ones (facebook, etc...) and you have not installed a new for several months.

    Unable to get much information because it maintains close and restart...

    The only thing I was doing before the problem occurred he was charging on the computer (not even synchronize). I unplugged it as I always do and it started to go crazy.

    What is worth a thousand words

    Sorry no picture and I don't think that a photo would be helpful...

    Thank you very much in advance for your help.

    SIM of the France.

    Sometimes things just go wobbly... Very dear, I hope that you already have a good backup of all, for what you describe, you are unlikely to be able to take one that you continue to try to recover from this situation. If your BB is very new, so you may want to just take to formal support and do not try to recover it now... After all, it might actually be a hardware problem (there is no way, at an internet distance really diagnose... perhaps we can 'deduct' material being likely, but we can't diagnose 100%).

    If you want to proceed, then please follow these steps (PC, not MAC):

    1) uninstall all the BB OS packages from your PC,

    (2) make sure you have the BB Desktop Software already installed

    (3) download and install on your computer, the BB OS package you want for your BB:

    (4) If this OS package comes from one carrier other carrier for which your BB was built, then remove, on your PC, all copies of the SELLER. XML... There will be at least one and maybe 2, and they will be located in the same way or to (it changes based on your version of Windows) these files:

    • C:\Program Files (x 86) \Common Files\Research In Motion\AppLoader
    • C:\Users\(your Windows username) \AppData\Roaming\Research In Motion\BlackBerry\Loader XML

    Now these KBs (try them in order, please)... but whenever they speak using a 'site update', please use the Desktop software installed above instead:

    1. KB10144 How to force detect the BlackBerry smartphone using the Application Loader
    2. KB27956 How to recover a BlackBerry smartphone from any State
    3. http://CrackBerry.com/BlackBerry-101-lecture-12-how-reload-operating-system-nuked-BlackBerry

    Good luck!

  • Internet from Smartphones blackBerry "BOLD" away with Tmobile USA

    Today, after fighting with a customer service tmobile for more than 2 hours (one hour in con Conference Rim), I already solve the problem with the internet, I have to pay $ 10 more for months with tmobile and for this they add me Blackberry company Server, so when you have installed on your "BOLD", they will put the Blackberry Internet on your phone.

    The only problem is that they do not offer the browser because they do not have the service exactly books the Blackberry "BOLD", but you can put the service books used by the Blackberry 8320 and you have the internet browser on your new Blackberry "BOLD".

    Here is the exact way to do this, follow this link, read first and do it.

    If you need some information, please report it.

    Really works, after that, you have the internet browser on your "BOLD".

    http://forums.CrackBerry.com/F83/Howto-get-all-features-WAP-browser-MMS-working-t-mobile-USA-unlocke...

Maybe you are looking for

  • You can play Pokémon go on iPad Pro?

    Can you play Pokemon go on iPad Pro?

  • Satellite A20-S103d very very slow

    This machine has slowed to a crawl at the start and close seems to spend a lot of time to read/write to the hard drive. Outlook Express may take five minutes to load. I've updated the bios, reinstalled XP Home, defragmented the hd, I'm perfectly up-t

  • How to reduce the amps on a 12v Battery

    Hello to all new to this site, I have a question I bought this laptop stereo amplifier and the power input is 12v 2amp so I have that battery is 12v 18ah how to drop the amps so that its 2A? What would be the cheapest way?

  • How to roll back 12/05/10 patch Patch Tuesday?

    SP2 of Vista Basic 32 Live One Care with automatic update active Installed a new Outlook Connector yesterday for my hotmail/outlook. material: P4 266, 2 meg of RAM PC2700, 60 GB 7200 RPM, 8 graphics shared meg Applications that do not work (so far) s

  • How to solve problems of bluescreen int exp 9

    Need help to solve the blue screen on my Vista Home Premium, Int PC problems. 9.