我有两个片段:在上面输入,并在底部的结果。
最初,只有InputFragment显示。 当用户点击“计算”按钮,ResultFragment节目。 这一切运作良好。
该ResultFragment具有“全部清除”按钮,这是我想要清除InputFragment的领域,并作出ResultFragment走开(隐藏,删除或分离,我都不在乎,只要它变得不可见)。
但是,当你点击“全部清除”按钮,它崩溃。 具体地,致命NullPointerException
发生在clearResult()方法。
这里是MainActivity.java
import android.support.v7.app.ActionBarActivity;
import android.app.Fragment;
import android.app.FragmentManager;
import android.app.FragmentTransaction;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
public class MainActivity extends ActionBarActivity implements InputFragment.InputFragmentListener, ResultFragment.ResultFragmentListener {
private static FragmentManager manager;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
if(savedInstanceState == null){
Fragment inputFragment = new InputFragment();
manager = getFragmentManager();
FragmentTransaction transaction = manager.beginTransaction();
transaction.add(R.id.fragment_container_top,inputFragment).commit();
}
}
//This gets called by the Input Fragment when the user clicks the Calculate button
@Override
public void createResult(String resultPhrase) {
ResultFragment resultFragment = (ResultFragment) manager.findFragmentById(R.id.result_fragment);
if (resultFragment != null){
/* if resultFragment is available, we can modify it's TextView
* by calling the method to do the updating
*/
//ResultFragment.theResultText.setText(resultPhrase);
resultFragment.setResultText(resultPhrase);
}else{
/*...otherwise the fragment has to be created */
ResultFragment newResultFragment = new ResultFragment();
Bundle args = new Bundle();
args.putString(ResultFragment.resultTxt, resultPhrase);
newResultFragment.setArguments(args);
FragmentTransaction transaction = manager.beginTransaction();
transaction.replace(R.id.fragment_container_bottom, newResultFragment);
transaction.addToBackStack(null);
transaction.commit();
//((TextView) newResultFragment.getView().get).setText(resultPhrase);
}
}
//This gets called in the ResultFragment when the user clicks the Clear All button
@Override
public void clearResult() {
//InputFragment inp_frag = (InputFragment) getFragmentManager().findFragmentById(R.id.fragment_input);
// This damned object is null again
//inp_frag.clearFields();
Fragment res_frag = getFragmentManager().findFragmentByTag("resultfragtag");
FragmentTransaction transaction = getFragmentManager().beginTransaction();
//res_frag.clearResult();
transaction.hide(res_frag);
transaction.commit();
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
//noinspection SimplifiableIfStatement
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}
下面是logcat的消息:
03-01 23:30:34.663:E / AndroidRuntime(3399):致命异常:主
03-01 23:30:34.663:E / AndroidRuntime(3399):进程:com.example.amortizersandbox,PID:3399
03-01 23:30:34.663:E / AndroidRuntime(3399):显示java.lang.NullPointerException:尝试写入到现场上的空对象引用 '诠释android.app.Fragment.mNextAnim'
03-01 23:30:34.663:E / AndroidRuntime(3399):在android.app.BackStackRecord.run(BackStackRecord.java:797)