不要在onRestoreInstanceState上运行函数

时间:2012-05-25 20:21:35

标签: android restore oncreate

我正在开发一款应用,当您转到屏幕时,您可以在onCreate内创建的对话框中选择您的位置。选择位置后,它会将其写入预先设定的TextView。我遇到的一个问题是,当屏幕方向改变时,它会重新创建对话框,我试图让它不会激活对话框功能。

以下是我在类文件中的基础知识。

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

    setContentView(R.layout.emergpolice);

    form_location = (TextView) findViewById(R.id.input_location);

    if(form_location == null || form_location.getText().equals("")){
        setLocation();
    }
}

@Override
protected void onSaveInstanceState(Bundle outState){
    super.onSaveInstanceState(outState);
    outState.putString("LOCATION", (String)form_location.getText());
}

@Override
protected void onRestoreInstanceState(Bundle savedInstanceState){
    super.onRestoreInstanceState(savedInstanceState);
    form_location.setText(savedInstanceState.getString("LOCATION"));
}

public void setLocation(){
    db = new DatabaseHandler(this);
    db.open();
    final CharSequence[] locOpt = {getString(R.string.dialog_items_current_location),getString(R.string.dialog_items_home),getString(R.string.dialog_items_enter_manually)};
    AlertDialog.Builder builder = new AlertDialog.Builder(this);
    builder.setTitle(getString(R.string.header_choose_location));
    builder.setSingleChoiceItems(locOpt, -1, new DialogInterface.OnClickListener() {
        public void onClick(DialogInterface dialog, int item){
            if(locOpt[item].equals(getString(R.string.dialog_items_home))){
                Cursor cur = db.userInfo(); 
                String address = cur.getString(cur.getColumnIndex("address"));
                String city = cur.getString(7);
                String county = cur.getString(8);
                String state = cur.getString(9);
                String zip = cur.getString(10);
                db.close();
                form_location.setText(address + ", " + city + ", " + county + ", " + state + ", " + zip);
            }
            if(locOpt[item].equals(getString(R.string.dialog_items_current_location))){
                Toast.makeText(getApplicationContext(), locOpt[item], Toast.LENGTH_SHORT).show();
            }
            dialog.cancel();
        }
    });
    AlertDialog alert = builder.create();
    alert.show();
}

我布局中的TextView

        <TextView
            android:id="@+id/input_location"
            android:layout_width="wrap_content"
            android:layout_below="@+id/text_location"
            android:layout_height="wrap_content"
            android:text="" />

就触发setLocation()而言,已经尝试了几种方案来检查字符串长度,无论是否为null。当屏幕更改时,它会显示原始选择的位置,但仍会触发对话框。

2 个答案:

答案 0 :(得分:2)

您始终调用方法setLocation,因为每次调用onCreate的{​​{1}}方法Activity都为form_location.getText().equals("")(因为{{1}重新创建(很可能你没有在布局文件中设置文本))。

要避免这种情况,请使用true方法的TextView

savedInstanceState

答案 1 :(得分:1)

您可以在活动代码中的清单文件中设置configchange的属性。如果你设置。除了您的活动之外,标志方向不会在每次方向更改时被销毁。因此,只会召唤一次。