【发布时间】:2017-02-17 13:29:08
【问题描述】:
我无法将 RecyclerView 添加到我的片段中。 超类“RecyclerView”以红色显示。 帮帮我!
java代码:
package com.invincible.fragedit;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
public class TableList extends Fragment {
private RecyclerView recyclerView;//error line
@Nullable
@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
return inflater.inflate(R.layout.fragment_list_table,container,false);
}
}
我已经在片段的 xml 文件中附加了一个 recyclerview,但我无法在我的片段类中创建 RecyclerView 的对象
xml代码:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="400dp"
android:id="@+id/frag_2"
android:layout_marginTop="80dp"
android:background="#c61414"
tools:context="com.invincible.fragedit.ListTable">
<!-- TODO: Update blank fragment layout -->
<android.support.v7.widget.RecyclerView
android:id="@+id/recycler_view"
android:layout_width="match_parent"
android:layout_height="match_parent">
</android.support.v7.widget.RecyclerView>
<TextView
android:id="@+id/table_value"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</RelativeLayout>
【问题讨论】:
-
你是否将jar文件作为库添加到项目中?
-
你在
build.gradle中添加了依赖compile 'com.android.support:appcompat-v7:25.1.1'吗?
标签: android android-studio object android-fragments android-recyclerview