Android Open Source - dbfragments Edit






From Project

Back to project page dbfragments.

License

The source code is released under:

Apache License

If you think the Android project dbfragments listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/*
 * Copyright (C) 2013 Yuriy Tkachenko/* www .j  a  va 2 s  . c  om*/
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package db.fragments;

import android.content.Context;
import android.text.Editable;
import android.text.TextWatcher;
import android.widget.EditText;

/**
 * The simple edit control.
 */
public class Edit extends EditText implements Control {

  private boolean changed = false;
  private boolean changedBySetText = false;

  private TextWatcher textWatcher = new TextWatcher() {

    public void afterTextChanged(Editable s) {
      changed = changedBySetText ? false: true;
      changedBySetText = false;
      //changed = isInputMethodTarget() ? true : false;
    }

    public void beforeTextChanged(CharSequence s, int start, int count,
        int after) {
    }

    public void onTextChanged(CharSequence s, int start, int before,
        int count) {

    }
  };

  public Edit(Context context) {
    super(context);
    // setImeOptions(EditorInfo.IME_ACTION_DONE);
    addTextChangedListener(textWatcher);
  }

  @Override
  public Editable getText() {
    return super.getText();
  }

  @Override
  public void setText(CharSequence text, BufferType type) {
    super.setText(text, type);
    changedBySetText = true;
  }

  @Override
  public boolean isChanged() {
    return changed;
  }

}




Java Source Code List

db.fragments.ActionActivity.java
db.fragments.CheckableFrameLayout.java
db.fragments.Chooser.java
db.fragments.Column.java
db.fragments.Columns.java
db.fragments.Control.java
db.fragments.DBAction.java
db.fragments.DBApplication.java
db.fragments.DBFragment.java
db.fragments.DataType.java
db.fragments.DatabaseHelper.java
db.fragments.DateChooser.java
db.fragments.DetailActivity.java
db.fragments.DialogItemsFragment.java
db.fragments.EditActivity.java
db.fragments.EditFragment.java
db.fragments.Edit.java
db.fragments.FilterFragment.java
db.fragments.Filter.java
db.fragments.Foreign.java
db.fragments.G.java
db.fragments.MainActivity.java