我正在使用 AIDE(Android IDE)编写一个简单的 Android 应用程序。我给了我的布局元素一个 ID,但是当我尝试使用 访问该元素时findViewById()
,我收到一条错误消息:“'com.mycompany.mailscomunes.R' 的未知成员 'id'。我没有看到这个AIDE 之外的错误。
这是Java代码:
package com.mycompany.mailscomunes;
import android.app.*;
import android.os.*;
import android.content.Intent;
import android.provider.ContactsContract;
public class MainActivity extends Activity
{
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
findViewById(R.id.one);
}
}
这是相关的 XML:
<TextView
android:text="@string/hello_world"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/one"/>