我想在ActionBar中使用Fragments。不幸的是,它看起来真的很复杂。我的片段有Textviews,我希望能够通过我的活动与他们进行交流。在我开始使用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) {
}
}
答案 0 :(得分:12)
你应该在Fragment上调用getView(),然后在返回的视图上使用findViewById()。
当然,在创建视图之后它不会返回任何内容,所以你可能不得不在onCreate之外的某个地方调用它。
答案 1 :(得分: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);
//...
}
随时查看片段上的Android文档,以便更好地了解我选择在该方法中执行此操作的原因,而不是片段onCreate
等。