What's new
DroidForums.net | Android Forum & News

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

[ROM] [ROM] Droid Concepts Froyo Releases [BETA versions]

here it is, straight from GitHub.. lol

https://github.com/DroidConcepts/an...b2a1/core/java/android/provider/Settings.java

search for settings to backup and you will find them..

everything in BLUE is what I have added to the settings to backup

============================================
Code:
/**
         * Settings to backup. This is here so that it's in the same place as the settings
         * keys and easy to update.
         * @hide
         */
        public static final String[] SETTINGS_TO_BACKUP = {
            STAY_ON_WHILE_PLUGGED_IN,
            WIFI_SLEEP_POLICY,
            WIFI_USE_STATIC_IP,
            WIFI_STATIC_IP,
            WIFI_STATIC_GATEWAY,
            WIFI_STATIC_NETMASK,
            WIFI_STATIC_DNS1,
            WIFI_STATIC_DNS2,
            BLUETOOTH_DISCOVERABILITY,
            BLUETOOTH_DISCOVERABILITY_TIMEOUT,
            DIM_SCREEN,
            SCREEN_OFF_TIMEOUT,
            SCREEN_BRIGHTNESS,
            SCREEN_BRIGHTNESS_MODE,
            VIBRATE_ON,
            NOTIFICATIONS_USE_RING_VOLUME,
            MODE_RINGER,
            MODE_RINGER_STREAMS_AFFECTED,
            MUTE_STREAMS_AFFECTED,
            VOLUME_VOICE,
            VOLUME_SYSTEM,
            VOLUME_RING,
            VOLUME_MUSIC,
            VOLUME_ALARM,
            VOLUME_NOTIFICATION,
            VOLUME_BLUETOOTH_SCO,
            VOLUME_VOICE + APPEND_FOR_LAST_AUDIBLE,
            VOLUME_SYSTEM + APPEND_FOR_LAST_AUDIBLE,
            VOLUME_RING + APPEND_FOR_LAST_AUDIBLE,
            VOLUME_MUSIC + APPEND_FOR_LAST_AUDIBLE,
            VOLUME_ALARM + APPEND_FOR_LAST_AUDIBLE,
            VOLUME_NOTIFICATION + APPEND_FOR_LAST_AUDIBLE,
            VOLUME_BLUETOOTH_SCO + APPEND_FOR_LAST_AUDIBLE,
            VIBRATE_IN_SILENT,
            TEXT_AUTO_REPLACE,
            TEXT_AUTO_CAPS,
            TEXT_AUTO_PUNCTUATE,
            TEXT_SHOW_PASSWORD,
            AUTO_TIME,
            TIME_12_24,
            DATE_FORMAT,
            ACCELEROMETER_ROTATION,
            DTMF_TONE_WHEN_DIALING,
            DTMF_TONE_TYPE_WHEN_DIALING,
            EMERGENCY_TONE,
            CALL_AUTO_RETRY,
            HEARING_AID,
            TTY_MODE,
            SOUND_EFFECTS_ENABLED,
            HAPTIC_FEEDBACK_ENABLED,
            POWER_SOUNDS_ENABLED,
            DOCK_SOUNDS_ENABLED,
            LOCKSCREEN_SOUNDS_ENABLED,
            SHOW_WEB_SUGGESTIONS,
            NOTIFICATION_LIGHT_PULSE,
[COLOR="Blue"]            NOTIF_BAR_COLOR,
            NOTIF_BAR_CUSTOM,
            NOTIF_EXPANDED_BAR_COLOR,
            NOTIF_EXPANDED_BAR_CUSTOM[/COLOR]
        };

============================================
 
Funny thing. When I reboot, the Droid concepts boot animation doesn't quite finish before the screen begins populating. So, some of the animation actually stays visible. I can turn the screen off and back on again, and things are fine. Not a biggie, but it might be something needs addressing....or maybe it's just my Droid. Anyone else experience this Phenom?

Sent from my Droid using DroidForums
 
Funny thing. When I reboot, the Droid concepts boot animation doesn't quite finish before the screen begins populating. So, some of the animation actually stays visible. I can turn the screen off and back on again, and things are fine. Not a biggie, but it might be something needs addressing....or maybe it's just my Droid. Anyone else experience this Phenom?

Sent from my Droid using DroidForums

I've noticed that a few times.
 
Funny thing. When I reboot, the Droid concepts boot animation doesn't quite finish before the screen begins populating. So, some of the animation actually stays visible. I can turn the screen off and back on again, and things are fine. Not a biggie, but it might be something needs addressing....or maybe it's just my Droid. Anyone else experience this Phenom?

Sent from my Droid using DroidForums

I've noticed that a few times.

Mine does it as well, I've just lived with it since launcher pro fc's every time I unlock the first time so I wait until the screen shuts off to do anything.
I think its lp not the rom cause its done it for almost anything I have used

Sent from my Droid using DroidForums
 
Actually does it with adw-ex also its the boot ani and something to do with screen refresh.

Sent from my NookColor using Tapatalk
 
Funny thing. When I reboot, the Droid concepts boot animation doesn't quite finish before the screen begins populating. So, some of the animation actually stays visible. I can turn the screen off and back on again, and things are fine. Not a biggie, but it might be something needs addressing....or maybe it's just my Droid. Anyone else experience this Phenom?

Sent from my Droid using DroidForums

Me too

Sent from my Droid using DroidForums
 
Funny thing. When I reboot, the Droid concepts boot animation doesn't quite finish before the screen begins populating. So, some of the animation actually stays visible. I can turn the screen off and back on again, and things are fine. Not a biggie, but it might be something needs addressing....or maybe it's just my Droid. Anyone else experience this Phenom?

Sent from my Droid using DroidForums

This generally happens when the android system is loaded and ready to display the desktop/homescreen before the animation completes. This happens when an animation is too long, say around 20+ seconds. This may also be due to animations that are too high definition, especially when using the original D1 /system/bin/bootanimation binary. The animation would tend to play at a fairly smooth rate, albeit much slower than the desc.txt file stated, yet it would lag or even stop once the homescreen was ready to display. The last frame of the animation would often "stick" with the lockscreen displayed.

Since we are using the binary from the D2R2D2, this should not often be the case, as animations that once bogged down the phone should play quite nicely. I know the default DC animation is full screen, which can slow down playback, but not so much as to lag and freeze unless the frames are close to full screen dimensions and/or the animation is set to play at a fast rate.

Also, this also happens particularly after wiping dalvik cache, which can be easily reproduced.

Due to these issues, I work to restrain the image dimensions, and choose to stretch them using the desc.txt. I generally limit them to around 18 seconds, which seems to complete just as the lockscreen displays, and when configuring loops in the desc.txt, I choose to set a finite loop to a small number rather than the "loop continuously until lockscreen" method. One thing that may be related that I have not tested is the clock speed. I clock at 1GHz and have done so since rooting. Those who clock slower may experience my animations either playing slower or lagging at the end, resulting in the described behavior.

What are the frame dimensions on the images withing the part folder? Also, what is the framerate set in the desc.txt file on the top line (3rd number)? We could probably tweak the animation to make it play faster.
 
Back
Top