从另一个包中的另一个活动使用OnClick

时间:2014-01-20 23:56:10

标签: java android android-fragments onclick

我正在尝试从另一个包中的父活动调用Fragment和OnClick方法。

onClick方法的代码是:

public static void Back(View v) {
    mPager.setCurrentItem(mPager.getCurrentItem() - 1, true);
}

public static void Next(View v) {
    mPager.setCurrentItem(mPager.getCurrentItem() + 1, true);
}

这里是Fragment的代码,我想从

中调用这些方法
public class Level1Question1 extends Fragment {

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
        Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    View rootView = inflater.inflate(R.layout.fragment_a, container, false);

    Button buttonQuestion = (Button) rootView.findViewById(R.id.buttonQuestion);

    What do I do here?

    return rootView;

0 个答案:

没有答案