mirror of https://github.com/tasks/tasks
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
3.3 KiB
3.3 KiB
#GreenDroid Changes History
##Changes from March 22, 2011 (version 0.11)
- [CHANGE] Refactor on some GreenDroid style. Styles related to
ItemViews are now named@style/GreenDroid.Widget.ItemView.<The-Item-View>- This change may impact your code if you are extending GreenDroid's styles. There is no impact otherwise
- [CHANGE] The
SegmentedBarstyle has been refactored to be in accordance with other widget styles. It is now in@style/GreenDroid.Widget - [CHANGE] All XML files have been re-indented with tabs instead of spaces (used in Java files)
- [FIXED]
ActionBartitle background has previously inherited from theActionBar. As a result, using translucent backgrounds was quite hazardous.- Starting for now, the
ActionBartitle has no background. The background is only given by theActionBaritself.
- Starting for now, the
- [FIXED] The
ImageLoaderCallback.onImageLoadingFailed(ImageLoader loader, Throwable exception)was sometimes called with a nullThrowable. - [NEW] New
setBitmapFactoryOptions(BitmapFactory.Options)andsetInDensity(int)/greendroid:inDensitymethods toAsyncImageView- May be used to bypass the default image loading behavior. By default images loaded from the network are all considered
as mdpi images. Using a
BitmapFactory.Optionsobject with a inDensity toDisplayMetrics.DENSITY_HIGHwill load images as hdpi images.
- May be used to bypass the default image loading behavior. By default images loaded from the network are all considered
as mdpi images. Using a
- [NEW] Add of new Javadoc on some GreenDroid's classes (
AsyncImageView,Time,ImageProcessor, etc.) - [NEW] Add of new
ActionBarItem.Type. Almost 10 new icons are now available. Icons are extracted from the Android Assets Studio project by Roman Nurik - [NEW] GreenDroid now has a version number! This makes GreenDroid's versions and history tracking way easier.
##Changes from March 1, 2011 (version 0.10)
- [NEW] Add of a complete image loader system:
AsyncImageViewwidget,ImageLoader,ImageCache, etc. - [FIXED] Class check issue in
GDTabActivity - [NEW]
GDListActivitydoes not force normalActionBarmode anymore - [NEW] Add of a new
ActionBar.Type:ÀctionBar.Type.Empty- In this mode, the
ActionBarhas no "Home" button
- In this mode, the
- [NEW]
addActionBarItem()methods now return the newly addedActionBarItem - [NEW]
ActionBarItemcan be "tagged". This makesActionBarItemclick handling way easier - [NEW] Add of a
removeItem(ActionBarItem)in theActionBarwidget - [NEW] Add of a new
ActionBarDrawableclass that helps the developer easily creatingDrawables forActionBars- The
ActionBarDrawabletakes aDrawableand automatically fill the shape with the white or black color depending on its current state. It allows you to decrease the size of your project. (GreenDroid's size has also decreased thanks to this optimization)
- The
- [NEW] Add of a
GDMapActivity- In order to use it you have to replace GreenDroid by the new GreenDroid-GoogleAPI library. GreenDroid-GoogleAPIs already integrates the GreenDroid library.
- [NEW] Add of a new
ActionBarActivityextra parameter:ÀctionBarActivity.GD_ACTION_BAR_VISIBILITY- Enable
ActionBarvisibility changes from parameters passed via anIntent. This may be useful when using a reusableGDActivityinside aGDTabActivity.
- Enable