我目前有一个摄氏温度的EditText和一个华氏的TextView用来显示答案。我使用过TextChangedListener,但这不适用于EditText。我无法使用TextChangedListener更改EditText中的值。有没有办法可以做到这一点。我希望用户在任何EditTexts中输入一个值,并在另一个中获得结果。这是我使用TextView的代码。我的主要活动:
public class MainActivity extends ActionBarActivity {
EditText C, F;
TextView Ct, Ft;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
C = (EditText) findViewById(R.id.celsius);
F = (EditText) findViewById(R.id.fahrenheit);
Ct = (TextView) findViewById(R.id.celsiusTextView);
Ft = (TextView) findViewById(R.id.fahrenheitTextView);
C.addTextChangedListener(new TextWatcher() {
double f,
c;
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
}
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
if (!s.toString().equals("")) {
c = Double.parseDouble(s.toString());
f = (((9 / 5) * c) + 32);
Ft.setText(String.valueOf(f));
} else {
Ft.setText("");
}
}
@Override
public void afterTextChanged(Editable s) {
}
});
F.addTextChangedListener(new TextWatcher() {
double f,
c;
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
}
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
if (!s.toString().equals("")) {
f = Double.parseDouble(s.toString());
c = ((f - 32) * 5 / 9);
Ct.setText(String.valueOf(c));
} else {
Ct.setText("");
}
}
@Override
public void afterTextChanged(Editable s) {
}
});
}
}
我的XML:
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="200dp"
android:id="@+id/nameText"
android:background="@drawable/fab_linear_layout">
<TextView
android:text="@string/converter"
android:layout_gravity="bottom"
android:textSize="30sp"
android:textColor="#FFFFFF"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="20dp"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_below="@+id/nameText"
android:paddingLeft="20dp"
android:paddingRight="20dp"
android:id="@+id/linearLayout1"
android:layout_centerVertical="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true">
<EditText
android:layout_width="50dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:inputType="numberSigned|numberDecimal"
android:hint="@string/celsius"
android:id="@+id/celsius"/>
<TextView
android:layout_width="50dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:hint="@string/fahrenheit"
android:id="@+id/fahrenheitTextView"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_below="@+id/linearLayout1"
android:paddingLeft="20dp"
android:paddingRight="20dp"
android:id="@+id/linearLayout2"
android:layout_centerVertical="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true">
<EditText
android:layout_width="50dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:inputType="numberSigned|numberDecimal"
android:hint="@string/fahrenheit"
android:id="@+id/fahrenheit"/>
<TextView
android:layout_width="50dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:hint="@string/celsius"
android:id="@+id/celsiusTextView"/>
</LinearLayout>
从代码中可以看出,我想删除冗余的TextViews,而是在EditText中得到答案。
答案 0 :(得分:1)
查看你的帖子,你进入一个无限循环,应用程序粉碎。正如您在两个EditText中都有onTextChanged方法一样,当C更改文本时,更改F会因为更改而改变C ....并且一次又一次。
进行简单的测试,如果从C或F中删除其中一个方法,您将看到更改正在进行。
您需要做的是区分用户更改的文本和应用程序自动更改的文本。
我建议如下。
定义一个将进行区分的布尔值:
EditText C, F;
TextView Ct, Ft;
private Boolean machine_changed_edittext = false;
不在每个onTextChanged添加以下内容:
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
//We check that the change is human
if (! machine_changed_edittext) {
machine_changed_edittext = true;
if (!s.toString().equals("")) {
c = Double.parseDouble(s.toString());
f = (((9 / 5) * c) + 32);
F.setText(String.valueOf(f));
} else {
F.setText("");
}
//Now as it is finished we declare back the Boolean to the correct value
machine_changed_edittext = false;
}
}
我认为我应该做得对,但这只是一个你把布尔值改变的游戏。如果我的想法不起作用,请告诉我,我们发起聊天,我们可以调试它。
答案 1 :(得分:1)
//未经测试的代码。
如果您只想使用两个EditTexts。如果您从onTextChanged
中的其他EditText中删除文本观察程序,它可能会有效。
假设华氏度EditText的文本观察者称为fWatcher,而Celcius EditText的文本观察者称为cWatcher。
当您修改摄氏编辑文本中的文本时,您将删除华氏编辑文本中的文本观察器,以便在编辑文本时不会触发该侦听器。
像这样定义cWatcher:
TextWatcher cWatcher = new TextWatcher() {
double f,
c;
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
}
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
fEditText.removeTextChangedListener(fWatcher);
if (!s.toString().equals("")) {
c = Double.parseDouble(s.toString());
f = (((9 / 5) * c) + 32);
Ft.setText(String.valueOf(f));
} else {
Ft.setText("");
}
fEditText.setTextChangedListener(fWatcher);
}
@Override
public void afterTextChanged(Editable s) {
}
}
同样定义其他TextWatcher。
答案 2 :(得分:1)
另一种实现方法是检查EditText是否具有焦点(科特林代码):
inputOne.addTextChangedListener { editableString->
//do nothing if this EditText is not being edited.
if(!inputOne.hasFocus())
return@addTextChangedListener
//do stuff
}
答案 3 :(得分:-2)
您在错误的视图上设置文字:
Ft.setText(String.valueOf(f));
} else {
Ft.setText("");
而不是Ft
TextView
,您应该在setText
上调用F
,即EditText。