0

ユーザーが別のタブでいくつかの曲を検索できるアプリを実装しています。曲の検索結果は、歌詞、意味などの情報です。結果から、ユーザーは別のタブにある特定の曲をお気に入りとしてマークできます。お気に入りの曲のタブをクリックすると、検索結果のフラグメントを含む最初のタブに切り替わるはずです。より具体的な詳細は次のとおりです。

  • メイン アクティビティは、2 つのタブを作成するアクション バーを生成します。
  • 検索タブ - 個別のフラグメント、結果 - 個別のフラグメント
  • [お気に入り] タブ - 別のフラグメント

    public class TabsListener<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 TabsListener(Activity activity, String tag, Class<T> clz) {
        mActivity = activity;
        mTag = tag;
        mClass = clz;
    }
    
    /* The following are each of the ActionBar.TabListener callbacks */
    
    @SuppressLint("NewApi")
    public void onTabSelected(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);
        }
    }
    
    @SuppressLint("NewApi")
    public void onTabUnselected(Tab tab, FragmentTransaction ft) {
        if (mFragment != null) {
            // Detach the fragment, because another one is being attached
            ft.detach(mFragment);
            //ft.remove(mFragment);
        }
    }
    
    @SuppressLint("NewApi")
    public void onTabReselected(Tab tab, FragmentTransaction ft) {
            ft.attach(mFragment);
        // User selected the already selected tab. Usually do nothing.
    }
    

    }

アクションバーのプログラムで、あるタブから別のタブへのこの切り替えを実装するにはどうすればよいですか?

4

0 に答える 0