我有三个片段。其中一个可以动态替换为另一个片段。如何禁用此“动态”片段中的按钮。禁用其他片段功能的按钮。当我编译我的应用程序时,我得到一个 java.lang.NullPointerException。
//主要活动公共类 MainActivity 扩展 Activity{
public static Button Button_1; public static Button Button_2; Block fragment; ... public void onCreate(Bundle savedInstanceState) { ... Button_1=(Button)findViewById(R.id.button1); Button_2=(Button)findViewById(R.id.button2); ... fragment = (Block) getFragmentManager().findFragmentById(R.id.block_frag); ... }
... }
public void onRadioButtonClicked(View view) { switch(view.getId()) { ... case R.id.radioButton4: { Button_1.setEnabled(false); Button_2.setEnabled(false); fragment.Button_3.setEnabled(false); fragment.Button_4.setEnabled(false); break; } case R.id.radioButton5: { ...
}
//block_frag:
公共类块扩展片段{
public Button Button_3; public Button Button_4; public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { Button_3=(Button)getView().findViewById(R.id.button3); Button_4=(Button)getView().findViewById(R.id.button4);
... }