各タブにリストが含まれる 2 つのタブで基本的なアクティビティを実装しようとしています。ガイドに従って、次のコードを作成しました。
MainActivity.java
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// Notice that setContentView() is not used, because we use the root
// android.R.id.content as the container for each fragment
// setup action bar for tabs
ActionBar actionBar = getActionBar();
actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);
actionBar.setDisplayShowTitleEnabled(true);
ActionBar.Tab tab = actionBar.newTab()
.setText(R.string.tab_last_transactions)
.setTabListener(new TabListener<List1Fragment>(
this, "list1_fragment", List1Fragment.class));
actionBar.addTab(tab);
tab = actionBar.newTab()
.setText(R.string.tab_accounts_balance)
.setTabListener(new TabListener<List2Fragment>(
this, "list2_fragment", List2Fragment.class));
actionBar.addTab(tab);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
new MenuInflater(this).inflate(R.menu.home_menu, menu);
return (super.onCreateOptionsMenu(menu));
}
}
List1Fragment.java
public class List1Fragment extends ListFragment {
private static final String[] items = { "Android", "Bluetooth", "Chrome",
"Docs", "Email", "Facebook", "Google", "Hungary", "Iphone",
"Korea", "Machintosh", "Nokia", "Orkut", "Picasa", "Singapore",
"Talk", "Windows", "Youtube" };
private ArrayList<String> words = null;
ArrayAdapter<String> adapter = null;
@Override
public void onActivityCreated(Bundle savedInstanceState) {
super.onActivityCreated(savedInstanceState);
// Populate list with our static array of titles.
words = new ArrayList<String>();
for (String s : items) {
words.add(s);
}
adapter = new ArrayAdapter<String>(getActivity(), android.R.layout.simple_list_item_1, words);
setListAdapter(adapter);
}
}
list1_fragment.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ListView android:id="@id/android:list"
android:layout_width="match_parent"
android:layout_height="0dp"
android:background="#00FF00"
android:layout_weight="1"
android:drawSelectorOnTop="false"/>
</LinearLayout>
MainActivity は、次のように LoginActivity からインスタンス化されます。
LoginActivity.java の一部
Intent mainIntent = new Intent(LoginActivity.this, MainActivity.class);
startActivity(mainIntent);
finish();
LoginActivity は正常に見えます。MainActivity を初めて開始するときは問題ありません。期待どおりにリストを取得します。
ここで、アプリケーションのライフサイクルを確認したいので、横向きに変更して強制終了し、再作成すると、上部に追加のリストが作成されます (縦向きに戻すと、再び追加のリストが作成されます)。アクティブなもの (スクロールするもの) が最初に作成されたもののようです。追加のものは修正されているように見えます。
別のトピックに投稿された同様の結果:
(savedInstanceState == null) を確認し、null の場合にのみ ListAdapter を設定すると、目的の動作 (リストが 1 つだけ) のように見えますが、リストの上部に「読み込み中...」があります。setListShown(true) を追加すると、例外がスローされ、プログラムが終了します。
変更された List1_Fragment:
if (savedInstanceState==null)
{
// Populate list with our static array of titles.
words = new ArrayList<String>();
for (String s : items) {
words.add(s);
}
adapter = new ArrayAdapter<String>(getActivity(), android.R.layout.simple_list_item_1, words);
setListAdapter(adapter);
}
else {
setListShown(true);
}
私は何を間違っていますか?リストを再作成しないようにするにはどうすればよいですか?
(方向の変更がオプションではない場合に再生成を防止します。アプリケーションが完了したら最後にこれを行いますが、この機能を使用して開発中にライフサイクルをテストし、キル/再起動をシミュレートしたいと考えています)
編集: setListShown の代わりに setListShownNoAnimation を使用するとうまくいきました...
EDIT2:
TabListener.java
public class TabListener<T extends Fragment> implements ActionBar.TabListener {
private Fragment mFragment;
private final Activity mActivity;
private final String mTag;
private final Class<T> mClass;
/** Constructor used each time a new tab is created.
* @param activity The host Activity, used to instantiate the fragment
* @param tag The identifier tag for the fragment
* @param clz The fragment's Class, used to instantiate the fragment
*/
public TabListener(Activity activity, String tag, Class<T> clz) {
mActivity = activity;
mTag = tag;
mClass = clz;
}
/* The following are each of the ActionBar.TabListener callbacks */
public void onTabSelected(ActionBar.Tab tab, FragmentTransaction ft) {
// Check if the fragment is already initialized
if (mFragment == null) {
// If not, instantiate and add it to the activity
mFragment = Fragment.instantiate(mActivity, mClass.getName());
ft.add(android.R.id.content, mFragment, mTag);
} else {
// If it exists, simply attach it in order to show it
ft.attach(mFragment);
}
}
public void onTabUnselected(ActionBar.Tab tab, FragmentTransaction ft) {
if (mFragment != null) {
// Detach the fragment, because another one is being attached
ft.detach(mFragment);
}
}
public void onTabReselected(ActionBar.Tab tab, FragmentTransaction ft) {
// User selected the already selected tab. Usually do nothing.
}
}