Features of the android rapid development framework afinal:
Easy to use, no configuration required, but configurable
It is normal to slide quickly when uploading images in listview, gridview, and other containers.
Support concurrent thread pool count Configuration
Supports memory cache size Configuration
Supports disk size cache configuration and cache location Configuration
Allows you to compress the disk cache with non-compressed configurations, and compress the image for a specific imageview. Non-compress supports decode for multiple imageviews of one image.
Supports Image Display configuration during loading.
Allows you to configure images displayed when loading fails.
Supports the download server configuration to facilitate image reading of different protocols (built-in http download server, which can be extended to other protocols such as ftp)
Supports the display configuration and displays playing animations to achieve better results.
[Java]
Public class DemoActivity extends FinalActivity {
@ ViewInject (id = R. id. imageView) ImageView imageView; // No need for findViewById
@ Override
Public void onCreate (Bundle savedInstanceState ){
Super. onCreate (savedInstanceState );
SetContentView (R. layout. main );
// Use the FinalBitmap component to display the network image to the imageView.
New FinalBitmap (this). init (). display (imageView, "http://www.bkjia.com/uploadfile/2012/1030/20121030030818104.png ");
}
}