Android:类型为id的预期资源

时间:2016-06-26 11:22:19

标签: java android xml android-studio

我在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

有关如何修复它的想法吗?

2 个答案:

答案 0 :(得分:3)

更改

android:id="@id/chords_recycler"

android:id="@+id/chords_recycler"

来自the documentation

  

加号(+)表示这是一个必须创建并添加到我们资源的新资源名称(在R.java文件中)。

您需要使用R.id.chords_recycler

访问它
chordsList = (RecyclerView) findViewById(R.id.chords_recycler);

答案 1 :(得分:3)

我认为你应该使用它:

 chordsList = (RecyclerView) findViewById(R.id.chords_recycler);