【发布时间】:2014-11-13 10:43:02
【问题描述】:
所以我正在尝试使用片段更改我的布局,但我无法让它工作,可能是因为我不太了解它是如何工作的。我对整体编程很陌生,所以我在理解一些东西时有点困难。不管怎样,这就是我想做的。
主活动
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();
}
}
碎片化
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;
}
}
片段二
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
任何想法如何解决这个问题?或者如何使用按钮更改布局?
【问题讨论】:
标签: android android-layout button android-fragments nullpointerexception