小编典典

有多少活动与片段?

all

介绍:

基本的“片段教程”模式是这样的:

  1. 在平板电脑上,左侧有列表,右侧有详细信息。
  2. 两者都是 Fragments并且都驻留在同一个Activity.
  3. 在手机上,将列表Fragment合二为一Activity
  4. 启动一个新Activity的细节Fragment

(例如Dianne Hackborn的 Android 3.0
Fragments API 和Fragments API
Guide

在这两种设备上,功能都在Fragments. (简单的)

平板 上,整个app是 1Activity,在 手机 上,有 很多Activities


问题:

  • 是否有理由将电话应用程序拆分为多个Activities

这种方法的一个 问题 是,您在主 Tablet和单独的 Phone 中 复制了很多逻辑Activity``Activities

  • Fragments 在这两种情况下保留 1 Activity 模型,使用相同的切换进出逻辑(只是使用不同的布局)会不会更容易?

这样,大部分逻辑都存在于Fragments它们自身中,并且只有一个Activity更少的代码重复。

另外,我所读到的ActionBarSherlock是,它似乎最适合使用Fragments而不是Activities(但我还没有使用它)。

教程是否过于简单,或者我错过了这种方法的主要内容?


我们已经在办公室成功地尝试了这两种方法——但我即将开始一个更大的项目,并想让自己的事情尽可能简单。


更新

在问题上开始赏金 - 仍然不相信为什么我需要在我的平板电脑活动和每个手机活动中复制我的应用程序逻辑。

还发现了 Square 的人写的一篇有趣的文章,非常值得一读:


阅读 59

收藏
2022-07-28

共1个答案

小编典典

我同意教程非常简化。他们只是介绍Fragments,但我不同意建议的模式。

我也同意在许多活动中复制应用程序的逻辑不是一个好主意(请参阅维基百科上的 DRY
原则
)。


ActionBarSherlock我更喜欢Fragments Demo
应用程序使用的模式(在此处下载源代码)。与问题中提到的教程最匹配的演示是应用程序中称为“布局”的演示;或FragmentLayoutSupport在源代码中。

Activity在此演示中,逻辑已从Fragment.
实际上包含更改片段的TitlesFragment逻辑。这样,每个Activity就很简单了。复制许多非常简单的活动,其中没有任何逻辑在活动内部,这使得它非常简单。

通过将逻辑放入 Fragments 中, 无需多次编写代码 ;无论将 Fragment 放入哪个
Activity,它都可用。这使它成为比基本教程建议的模式更强大的模式。

    /**
    * Helper function to show the details of a selected item, either by
    * displaying a fragment in-place in the current UI, or starting a
    * whole new activity in which it is displayed.
    */
    void showDetails(int index)
    {
        mCurCheckPosition = index;

        if (mDualPane)
        {
            // We can display everything in-place with fragments, so update
            // the list to highlight the selected item and show the data.
            getListView().setItemChecked(index, true);

            // Check what fragment is currently shown, replace if needed.
            DetailsFragment details = (DetailsFragment) getFragmentManager()
                .findFragmentById(R.id.details);
            if (details == null || details.getShownIndex() != index)
            {
                // Make new fragment to show this selection.
                details = DetailsFragment.newInstance(index);

                // Execute a transaction, replacing any existing fragment
                // with this one inside the frame.
                FragmentTransaction ft = getFragmentManager()
                    .beginTransaction();
                ft.replace(R.id.details, details);
                ft.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_FADE);
                ft.commit();
            }

        }
        else
        {
            // Otherwise we need to launch a new activity to display
            // the dialog fragment with selected text.
            Intent intent = new Intent();
            intent.setClass(getActivity(), DetailsActivity.class);
            intent.putExtra("index", index);
            startActivity(intent);
        }
    }

ABS模式的另一个优点是您最终不会得到包含大量逻辑的 Tablet
Activity,这意味着您可以节省内存。教程模式可以在更复杂的应用程序中导致非常大的主要活动;因为它需要随时处理放置在其中的所有片段的逻辑。

总的来说,不要认为它是被迫使用许多活动。将其视为有机会将您的代码拆分为许多片段,并在使用它们时节省内存。

2022-07-28