【问题标题】:Using button to change layout using Fragment使用按钮使用 Fragment 更改布局
【发布时间】: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


    【解决方案1】:
    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();
    
            }
        });
    

    【讨论】:

    • 内容无法解决
    • 这也不起作用。编辑:我的文字错了吗,这很好用! (在“R.id.content”之前添加“android”之后)
    【解决方案2】:

    您的按钮展开位于 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 以便更好地理解片段

    【讨论】:

    • 在此之后似乎仍然崩溃,同样的错误。
    • 结合您在 fragmentone 和 jaydroiders 代码中放置 onClick 的技巧,效果很好。非常感谢
    猜你喜欢
    • 2014-03-13
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多