これは onCreate() で呼び出されています。向きの切り替えを高速化するにはどうすればよいですか?
private void setupChartView(int position){
Quote myQuote = quotesAdapter.getItem(position);
this.symbol = myQuote.getSymbol();
String url = "http://chart.finance.yahoo.com/z?s=" + symbol + "&t=1d&q=l&l=on&z=l&p=s&a=v&p=s&lang=en-US®ion=US";
if(chartImageView != null)
imageDownloader.download(url, chartImageView);
if(chartImageViewLandscape != null)
imageDownloader.download(url, chartImageViewLandscape);
}