2012-01-30 25 views
6

Sohbet desteği & olan bir uygulama geliştiriyorum. Hava durumunu bilmeliyim ki, uygulama uygulamasında mesaj uygulamasında olduğu gibi bir yıldız simgesi ayarlamak için BB OS 4.5'te uygulanabilir.blackberry yıldız simgesi

enter image description here

+0

Büyük resmi için üzgünüm: D –

cevap

5

Sen bunu yapabilir. Simgeler için dört resminiz olmalı. Onlar

  1. Standart uygulama simgesi
  2. simgesinin üzerine
  3. Standart top
  4. bir *

simgenin üzerine a *

  • Standart top ile
  • Standart simge bunu şu kodu kullanın sonra vardır

       if (unReadChatMessages> 0) 
           { 
            appIcon = Bitmap.getBitmapResource("app_alert.png"); 
            rolloverIcon = Bitmap.getBitmapResource("app_rollover_alert.png"); 
            // turn on the LED     
            if(LED.isSupported(LED.LED_TYPE_STATUS)) 
            { 
             LED.setState(LED.STATE_BLINKING); 
             LED.setConfiguration(100, 1000, LED.BRIGHTNESS_100); 
            } 
           } 
           else 
           { 
            // use default icons... 
            appIcon = Bitmap.getBitmapResource("app.png"); 
            rolloverIcon = Bitmap.getBitmapResource("app_rollover.png"); 
    
            // Turn off LED...     
            if(LED.isSupported(LED.LED_TYPE_STATUS)) 
            { 
             LED.setState(LED.STATE_OFF); 
            } 
           } 
    
           // Try to set the icons 
           HomeScreen.updateIcon(appIcon, 0); 
           HomeScreen.setRolloverIcon(rolloverIcon, 0);