上部に 4 つのアクション バー ナビゲーション タブがある Android アプリがあります。そして、これが示唆するように、それぞれにフラグメントを追加しました。出来た。
// here I created an ActionBar Navigation Tabs from MainActivity
public function initActionBar () {
this.getActionBar().setDisplayShowHomeEnabled(false);
this.getActionBar().setDisplayShowTitleEnabled(false);
ActionBar actionBar = getActionBar();
actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);
actionBar.setDisplayShowTitleEnabled(false);
actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);
String[] tabs = { "test", "test1", "test2", "test3" };
ActionBar.Tab tab = actionBar.newTab().setText(tabs[0]).setTag("0");
tab.setTabListener(new MainTabListener(new Testfragment()));
actionBar.addTab(tab);
ActionBar.Tab tab1 = actionBar.newTab().setText(tabs[1])
.setTag("1");
tab1.setTabListener(new MainTabListener(new Test1Fragment()));
actionBar.addTab(tab1);
}
public class MainTabListener implements TabListener {
ParentListFragment fragment;
boolean added = false;
public MainTabListener(ParentListFragment fragment) {
this.fragment = fragment;
}
@Override
public void onTabReselected(Tab arg0, FragmentTransaction ft) {
}
@Override
public void onTabSelected(Tab arg0, FragmentTransaction ft) {
ft.replace(R.id.jokeFragment, fragment);
}
@Override
public void onTabUnselected(Tab arg0, FragmentTransaction ft) {
// TODO Auto-generated method stub
ft.remove(fragment);
//ft.detach(fragment);
android.util.Log.v ("main tab listener", "detached");
}
}
TestFragment と Test1Fragment のメイン コードは次のとおりです。
@Override
public void onActivityCreated(Bundle savedInstanceState) {
super.onActivityCreated(savedInstanceState);
init();
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.activity_test, null);
return view;
}
public void init() {
Posts.getInstance().setUpdateInfo();
list = (PullToRefreshListView) this.getActivity().findViewById(
R.id.list2);
list.setTag("first");
list.setOnRefreshListener(new OnRefreshListener<ListView>() {
public void onRefresh(PullToRefreshBase<ListView> refreshView) {
try {
load("0");
}
catch (Exception e) {
e.printStackTrace();
}
}
});
init2();
}
public void init2() {
adapter = new JokeListAdapter(this.getActivity());
adapter.posts = Posts.getInstance().posts0;
list.getRefreshableView().setAdapter(adapter);
footer = (RelativeLayout) ((LayoutInflater) this.getActivity()
.getApplicationContext()
.getSystemService(Context.LAYOUT_INFLATER_SERVICE)).inflate(
R.layout.view_list_footer, null, false);
footer.setVisibility(LinearLayout.GONE);
loadingMoreLogo = (ProgressBar) footer
.findViewById(R.id.loadingMoreLogo);
loadingMoreLogo.setVisibility(ProgressBar.GONE);
listener = new OnButtonClickListener();
Button button = (Button) footer.findViewById(R.id.buttonLoadMore);
button.setTag("loadmore");
button.setOnClickListener(listener);
button = (Button) this.getActivity().findViewById(R.id.buttonJokeTag);
button.setTag("tag");
button.setOnClickListener(listener);
button = (Button) this.getActivity().findViewById(
R.id.buttonJokeRefresh);
button.setTag("refresh");
button.setOnClickListener(listener);
Posts.getInstance().getDataFromDB(0);
if (Posts.getInstance().posts0 != null) {
adapter.posts = Posts.getInstance().posts0;
adapter.notifyDataSetChanged();
list.getRefreshableView().setAdapter(adapter);
if (list.getTag() == "first") {
list.setTag("");
list.getRefreshableView().addFooterView(footer);
footer.setVisibility(LinearLayout.VISIBLE);
}
}
isNext = false;
load("0");
}
タブを切り替えると、1 つの問題が見つかりました。タブに追加したフラグメントListFragment
は .ビューの一番上までスクロールします。別のタブに切り替えてから元に戻すと、この関数が再度呼び出されるため、ビューが一番上にジャンプします。フラグメントの状態を維持する方法を実際に知りたいので、元に戻したとき、フラグメントはまだ最新の位置にありました。ありがとう。
public void onActivityCreated(Bundle savedInstanceState) {
super.onActivityCreated(savedInstanceState);
init();
}
ListView に戻るときにlistView 位置トリックの維持/保存/復元スクロール位置を使用しないようにする解決策を探しています。フラグメント状態を保存できるので、次回はそのように再設定できActivity
ますか? 今のところ、それは ActionBar Navigation Tab + Fragments でなければなりません。
このアプリは当初 Android 2.3 で作成され、TabHost を使用していましたが、現在は Android 4.0 の Actionbar ベースのアプリに変換しています。TabHost ではActivity
for eachListView
を使用していましたが、Fragment に変更しました。すべてのソース コードは github.com、私のプライベート リポジトリにあります。ご協力いただける場合は、アカウントを追加できますので、git cloen していつでも確認できます。