基本的に、AsyncTask を使用して URL からビットマップをダウンロードし、ImageView 内に表示する単純な Fragment があります。
これはフラグメントのコードです:
public class TestFragment extends Fragment {
public TestFragment () {}
private String pictureUrl = "https://fbcdn-sphotos-d-a.akamaihd.net/hphotos-ak-prn1/532762_10150739418088211_1186720820_n.jpg";
private TextView sampleText;
private ImageView sampleImage;
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View root = inflater.inflate(R.layout.fragment_view, container, false);
String textToSet = "Section Three";
sampleText = (TextView) root.findViewById(R.id.textView1);
sampleText.setText(textToSet);
sampleImage = (ImageView) root.findViewById(R.id.imageView1);
DownloadImageTask task = new DownloadImageTask(pictureUrl, root, sampleImage.getId());
task.execute();
return root;
}
}
この同じフラグメントは、ActionBar 内の各タブごとに 1 つずつ、3 回表示されます。私が抱えている問題は、ユーザーが別のタブを選択するたびに前のタブが破棄され、ユーザーが元のタブに戻るときにコンテンツを再ダウンロードする必要があることです。リソースの消費量を最小限に抑えたい (データと貴重なオーバーヘッド処理の両方を節約する)。
Fragment Container アクティビティは次のとおりです。
public class LayoutContainer extends Activity{
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_layout_container);
if (savedInstanceState != null) {
return;
}
final ActionBar actionBar = getActionBar();
actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);
Tab tab = actionBar.newTab()
.setText(R.string.title_section1)
.setTabListener(new TabListener<TestFragment>(
this, "one", TestFragment.class));
actionBar.addTab(tab);
tab = actionBar.newTab()
.setText(R.string.title_section2)
.setTabListener(new TabListener<TestFragment>(
this, "two", TestFragment.class));
actionBar.addTab(tab);
tab = actionBar.newTab()
.setText(R.string.title_section3)
.setTabListener(new TabListener<TestFragment>(
this, "three", TestFragment.class));
actionBar.addTab(tab);
}
public static class TabListener<T extends Fragment> implements ActionBar.TabListener {
private Fragment mFragment;
private final Activity mActivity;
private final String mTag;
private final Class<T> mClass;
public TabListener(Activity activity, String tag, Class<T> clz) {
mActivity = activity;
mTag = tag;
mClass = clz;
}
public void onTabSelected(Tab tab, FragmentTransaction ft) {
if (mFragment == null) {
mFragment = Fragment.instantiate(mActivity, mClass.getName());
}
ft.replace(android.R.id.content, mFragment, mTag);
}
public void onTabUnselected(Tab tab, FragmentTransaction ft) {
ft.addToBackStack(null);
ft.commit();
}
public void onTabReselected(Tab tab, FragmentTransaction ft) {
}
}
現在、OnTabSelected()メソッドでft.replace()を呼び出すように設定していますが、以前はft.add()で試していました。OnTabUnselected () 内の現在のft.addToBackStack()呼び出しにも同じことが言えます。最初は単にft.detach()を呼び出すように設定していましたが、それは私の問題であると説明したのと同じことをしていました。そのようにロードしますが、毎回イメージをダウンロードする必要があります。
ここで、addToBackStack()を呼び出してみましたが、FragmentTransaction をバック スタックに追加できないというメッセージが表示され、アプリが強制終了します。また、データの消費を避けるために、過去に画像をオフラインでキャッシュしようとしましたが、アプリはローカル URI から画像を解析し、処理能力を使用する必要があります。
私が試すことができるアイデアはありますか?
参考までに、はい、同じフラグメントが 3 つのタブすべてに同じ画像をロードしていることはわかっています。これは、フラグメントのライフサイクルをよりよく理解するための単なるテスト プロジェクトです。