我在Eclipse(Android版)中创建了这段代码,但是有一些错误。
布局:
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Click"
android:id="@+id/click"
/>
<Edittext
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/meal"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/answerfield"
/>
</LinearLayout>
主:
package tip.com.tip;
import tip.com.R;
import java.text.NumberFormat;
import android.app.Activity;
import android.os.Bundle;
import android.text.Editable;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
public class com extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
final Button button = (Button) findViewById(R.id.click);
final EditText edittext = (EditText) findViewById(R.id.meal);
final TextView textView = (TextView) findViewById(R.id.answerfield);
button.setOnClickListener(new Button.OnClickListener(){
public void onClick (View v) {
String meal = edittext.getText().toString();
String answer = "";
if (meal.indexOf("$") == -1) {
meal = "$" + meal;
}
float fmp = 0.0F;
NumberFormat nf = java.text.NumberFormat.getCurrencyInstance();
fmp = nf.parse(meal).floatValue();
fmp *= 1.2;
answer = " The meal's price is: " + nf.format(fmp);
answerfield.setText(answer);
}
}
}
}
它写信给我,anserfield无法解析,语法错误,插入')'和另一个错误插入';'。有什么问题?我找不到错误。
答案 0 :(得分:3)
您的setOnClickListener
遗失了);
,例如最后是一个右括号和分号。
由于提示@WarrenFaith,您的answerfield
永远不会被宣布。
我最初还建议尝试删除以下行:
import tip.com.R;
至少我记得曾经有过这方面的问题。您可能希望检查布局XML文件中的语法错误。
答案 1 :(得分:0)
在您致电);
时,您似乎缺少setOnClickListener
。