5

我想在 ActionBar 中使用 Fragments。不幸的是,它看起来真的很复杂。我的片段有文本视图,我希望能够在我的活动之外与它们进行交流。在我开始使用 Fragments 之前,我可以使用

private EditText editText = (EditText) findViewById(R.id.editTextName);

因此,当用户单击保存时,我能够接收到 editText 值。我应该如何以片段方式执行此操作?

活动:

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_add_recipe);
    getSupportActionBar().setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);
    getSupportActionBar().setDisplayOptions(0, com.actionbarsherlock.app.ActionBar.DISPLAY_SHOW_HOME | com.actionbarsherlock.app.ActionBar.DISPLAY_USE_LOGO | com.actionbarsherlock.app.ActionBar.DISPLAY_SHOW_TITLE);

    ActionBar.Tab newTab0 = getSupportActionBar()
            .newTab()
            .setText(R.string.fragment_general)
            .setTabListener(
            new MyTabListener<GeneralFragment>(this, "general",
                            GeneralFragment.class));


    getSupportActionBar().addTab(newTab0);

}
public static class MyTabListener<T extends Fragment> implements
        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 MyTabListener(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(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.setCustomAnimations(android.R.animator.fade_in, R.animator.animationtest);
            ft.attach(mFragment);
        }
    }

    public void onTabUnselected(Tab tab, FragmentTransaction ft) {
        if (mFragment != null) {
            //ft.setCustomAnimations(android.R.animator.fade_in, R.animator.test);
            ft.detach(mFragment);
        }
    }

    public void onTabReselected(Tab tab, FragmentTransaction ft) {
    }
}
4

2 回答 2

12

您应该在 Fragment 上调用 getView(),然后在返回的视图上使用 findViewById()。

当然,在创建视图之前它不会返回任何内容,因此您可能必须在 onCreate 之外的其他地方调用它。

于 2012-10-09T17:49:20.553 回答
1

好吧,您需要扩充一个 xml 文件,或者从头开始创建一个,尽管我不推荐它,除非您喜欢额外的工作 :) 但是使用 Activity 会setContentView()扩充您的 xml 文件,然后onCreate()您可以访问它你习惯的方式。请注意,如果您尝试在没有父视图的情况下访问 onCreate 之外的布局视图,您将遇到同样的问题。除非你做了一个全局变量。由于 onCreate 是开发人员通常开始的地方,Android 可以轻松地从findViewById.

假设您有一个名为 edit.xml 的 xml 文件:

public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
//this method is found within your Fragment, which you must ovverride
View view = inflater.inflate(R.layout.edit, container, false);
private EditText editText = (EditText) view.findViewById(R.id.editTextName);
//...
}

随意查看有关 Fragments 的 Android 文档,以更好地了解我为什么选择使用该方法而不是 FragmentsonCreate等。

于 2012-10-09T17:34:38.117 回答