我在Android Studio中遇到了一个奇怪的问题。
我的activity_chords_list.xml文件里面有一个RecyclerView
,如下所示:
<android.support.v7.widget.RecyclerView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/chords_recycler"
android:layout_below="@+id/layout_top"
android:layout_alignParentStart="true"
android:layout_marginTop="50dp" />
但在onCreate()
方法中,我们无法识别:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_chords_list);
chordsList = (RecyclerView) findViewById(R.layout.chords_recycler);
我得到以下两个错误:
Expected resource of type ID
cannot resolve symbol chords_recycler
有关如何修复它的想法吗?
答案 0 :(得分:3)
更改
android:id="@id/chords_recycler"
的
android:id="@+id/chords_recycler"
加号(+)表示这是一个必须创建并添加到我们资源的新资源名称(在R.java文件中)。
您需要使用R.id.chords_recycler
:
chordsList = (RecyclerView) findViewById(R.id.chords_recycler);
答案 1 :(得分:3)
我认为你应该使用它:
chordsList = (RecyclerView) findViewById(R.id.chords_recycler);