使用按钮使用Fragment更改布局

时间:2014-11-13 10:43:03

标签: android android-layout button android-fragments nullpointerexception

所以我试图用一个使用片段的按钮来改变我的布局,但我无法让它工作,可能是因为我真的不明白它是如何工作的。我对整体编程很新,所以我在理解某些东西时有点麻烦。无论如何,这就是我想要做的。

MainActivity

public class MainActivity extends ActionBarActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    FragmentManager fragmentManager = getFragmentManager();
    FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();

    Fragmenttwo thenewfrag = new Fragmenttwo();
    fragmentTransaction.replace(android.R.id.content, thenewfrag);

    Button splay = (Button) findViewById(R.id.splay);

    splay.setOnClickListener(new View.OnClickListener(){
    public void onClick(View v) {
          FragmentManager fragmentManager = getFragmentManager();
          FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();

          Fragmentone newfrag = new Fragmentone();
          fragmentTransaction.replace(android.R.id.content, newfrag);

          fragmentTransaction.commit();
    }
});
fragmentTransaction.commit();
}
}

Fragmentone

public class Fragmentone extends Fragment {

 public Fragmentone() {}

 @Override
 public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
     View view = inflater.inflate(R.layout.mainmenu, container, false);
     return view;

    }
}

Fragmenttwo

public class Fragmenttwo extends Fragment{

 public Fragmenttwo() {}

 @Override
 public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
     View view = inflater.inflate(R.layout.start_board, container, false);
     return view;

    }
}

mainmenu.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/mainmenu"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/mainmenu" >

<Button
    android:id="@+id/splay"
    android:layout_width="195dp"
    android:layout_height="64dp"
    android:layout_centerVertical="true"
    android:layout_centerHorizontal="true" />

</RelativeLayout>

LogCat(我在onClickLitsener上得到NullPointerException?按下按钮时出现错误)

E/AndroidRuntime(2001): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.gerfort.gerfortrps/com.gerfort.gerfortrps.MainActivity}: java.lang.NullPointerException: Attempt to invoke virtual method 'void android.widget.Button.setOnClickListener(android.view.View$OnClickListener)' on a null object reference

任何想法如何解决这个问题?或者如何使用按钮更改布局?

2 个答案:

答案 0 :(得分:2)

Button yourButton = (Button) rootView
            .findViewById(R.id.btnid);
    yourButton.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View v) {
            // TODO Auto-generated method stub

            Fragment newFragment = new YourFragment();
            FragmentTransaction transaction = getFragmentManager()
                    .beginTransaction();

            // Replace whatever is in the fragment_container view with this
            // fragment,
            // and add the transaction to the back stack
            transaction.replace(android.R.id.content, newFragment);
            transaction.addToBackStack("tag");

            // Commit the transaction
            transaction.commitAllowingStateLoss();

        }
    });

答案 1 :(得分:0)

您的按钮展开位于mainmenu.xml中,该文件在FragmentOne中加载。所以你需要找到它的参考:

public class Fragmentone extends Fragment {

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        View view = inflater.inflate(R.layout.mainmenu, container, false);
        Button splay = (Button) view.findViewById(R.id.splay);
        //onClick here
        return view;
    }
}

您的按钮展开为空。所以你得到了

E/AndroidRuntime(2001): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.gerfort.gerfortrps/com.gerfort.gerfortrps.MainActivity}: java.lang.NullPointerException: Attempt to invoke virtual method 'void android.widget.Button.setOnClickListener(android.view.View$OnClickListener)' on a null object reference

希望它有所帮助。

P.S:reference以便更好地理解碎片