我这里有一个简单的 android 应用程序,我无法为我的错误保存解决方案,因为它在 R.java 文件中。它只是继续恢复,我无法保存我修改的内容。
这是我正在处理的代码。它只是一个简单的文本到语音按钮。
private TextToSpeech talker;
private ImageButton imageButton1;
private TextView text;`
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.abc);
talker = new TextToSpeech(this,this);
imageButton1 = (ImageButton) findViewById(R.id.imageButton1);
text = (TextView) findViewById(R.id.text);
text.setText("A");
imageButton1.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {
// TODO Auto-generated method stub
String strText2 = text.getText().toString();
if (strText2.length()>0)
{ say(strText2); }
}
});`
我有我的错误,text = (TextView) findViewById(R.id.text);
因为它找不到应该保存在 R.java 文件中的资源 id。我的问题是每当我单击建议的解决方案时,即在类型 id 中创建字段文本,错误就会消失,如果我保存它,它就会恢复。