当前位置: 首页 > 知识库问答 >
问题:

自定义控件中的回收器视图和网格视图空指针异常

申屠英韶
2023-03-14

我遵循本教程并应用一些更改,并在回收器视图中获得了nullPointerException

我在gridview中也遇到了这个错误

我初始化了回收视图,这段代码有什么问题?

自定义日历视图。xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/white">

<!-- date toolbar -->
<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:paddingTop="12dp"
    android:paddingBottom="12dp"
    android:paddingLeft="30dp"
    android:paddingRight="30dp">

    <!-- prev button -->
</RelativeLayout>

<!-- days header -->
<LinearLayout
    android:id="@+id/calendar_header"
    android:layout_width="match_parent"
    android:layout_height="40dp"
    android:gravity="center_vertical"
    android:orientation="horizontal">
</LinearLayout>

<!-- days view -->
<android.support.v7.widget.RecyclerView
    android:id="@+id/calendarRecycler"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

</android.support.v7.widget.RecyclerView>

自定义日历视图。Java语言

    public class customCalendarView extends LinearLayout {

    // how many days to show, defaults to six weeks, 42 days
    private static final int DAYS_COUNT = 42;

    // current displayed month
    private Calendar currentDate = Calendar.getInstance();

    // internal components
    private LinearLayout header;
    private ImageView btnPrev;
    private ImageView btnNext;
    private TextView txtDate;
    private RecyclerView grid;

    public customCalendarView(Context context) {
        super(context);
        initControl(context);
    }

    public customCalendarView(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public customCalendarView(Context context, AttributeSet attrs, int     defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }

    private void initControl(Context context) {
        LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        inflater.inflate(R.layout.custom_calendar_view, this);
        //assignClickHandlers();
        updateCalendar();
    }

    private void assignUiElements() {
        // layout is inflated, assign local variables to components
        header = (LinearLayout) findViewById(R.id.calendar_header);
        btnPrev = (ImageView) findViewById(R.id.calendar_prev_button);
        btnNext = (ImageView) findViewById(R.id.calendar_next_button);
        txtDate = (TextView) findViewById(R.id.calendar_date_display);
        grid = (RecyclerView) findViewById(R.id.calendarRecycler);
    }

    public void updateCalendar() {
        assignUiElements();

        List<calendarInf> cells = new ArrayList<>();
        Calendar calendar = (Calendar) currentDate.clone();

        // determine the cell for current month's beginning
        calendar.set(Calendar.DAY_OF_MONTH, 1);
        int monthBeginningCell = calendar.get(Calendar.DAY_OF_WEEK) - 1;

        // move calendar backwards to the beginning of the week
        calendar.add(Calendar.DAY_OF_MONTH, -monthBeginningCell);

        // fill cells
        while (cells.size() < DAYS_COUNT) {
            calendarInf ci = new calendarInf();
            ci.date1 = calendar.getTime().toString();
            ci.date2 = "2";
            ci.date3 = "3";
            cells.add(ci);
            //Log.d("cells", "updateCalendar: "+cells.);
            calendar.add(Calendar.DAY_OF_MONTH, 1);
        }
        CustomCalendarAdapter adapter = new   CustomCalendarAdapter(getContext(), cells);
        RecyclerView.LayoutManager mLayoutManager=new GridLayoutManager(getContext(),2);
        grid.setLayoutManager(mLayoutManager);

        grid.setAdapter(adapter);
    }
}

CostumCalendarAdapter。Java语言

    public class CustomCalendarAdapter extends   RecyclerView.Adapter<CustomCalendarAdapter.calendarViewHolder >{

    private LayoutInflater inflater;
    List<calendarInf> data = Collections.emptyList();
    Context context;

    public CustomCalendarAdapter(Context context,List<calendarInf> data)
    {
        inflater = LayoutInflater.from(context);
        this.data = data;
        this.context=context;
    }



    @Override
    public CustomCalendarAdapter.calendarViewHolder         onCreateViewHolder(ViewGroup parent, int viewType) {
        View view=inflater.inflate(R.layout.calendar_grid,parent,false);
        calendarViewHolder holder=new calendarViewHolder(view);
        return holder;
    }

    @Override
    public void onBindViewHolder(CustomCalendarAdapter.calendarViewHolder   holder, int position) {
        calendarInf current=data.get(position);
        holder.txtDate1.setText(current.date1);
        holder.txtDate2.setText(current.date2);
        holder.txtDate3.setText(current.date3);

    }

    @Override
    public int getItemCount() {
        return data.size();
    }

    class calendarViewHolder extends RecyclerView.ViewHolder{
        TextView txtDate1;
        TextView txtDate2;
        TextView txtDate3;

        public calendarViewHolder(View itemView) {
            super(itemView);
            txtDate1= (TextView) itemView.findViewById(R.id.txtDate1);
            txtDate2= (TextView) itemView.findViewById(R.id.txtDate2);
            txtDate3= (TextView) itemView.findViewById(R.id.txtDate3);


        }
    }
}

日历活动。Java语言

    public class CalendarActivity extends BaseActivity {
    //FragmentManager manager;
    private BottomSheetBehavior mBottomSheetBehavior;
    TextView txtHello;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_calendar);




    View bottomSheetView = findViewById(R.id.bottom_sheet);
        mBottomSheetBehavior = BottomSheetBehavior.from(bottomSheetView);
                 mBottomSheetBehavior.setState(BottomSheetBehavior.STATE_COLLAPSED);


        customCalendarView cv = ((customCalendarView)findViewById(R.id.calendar_view));
        cv.updateCalendar();


    }
}

活动日历。xml

<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
tools:context="com.example.aysha.todocln.CalendarActivity"
android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
android:id="@+id/activity_calendar"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<com.example.aysha.todocln.customCalendarView
    android:id="@+id/calendar_view"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" />
 </RelativeLayout>
<!-- bottom sheet layout -->
 <RelativeLayout
    android:id="@+id/bottom_sheet"
    android:background="@color/colorAccent"
    android:layout_width="match_parent"
    android:layout_height="320dp"
    app:layout_behavior="@string/bottom_sheet_behavior"
    app:behavior_peekHeight="70dp">
  </RelativeLayout>
 </android.support.design.widget.CoordinatorLayout>

错误LogCat:

12-03 03:56:55.184 6750-6750/com。实例艾莎。todocln E/AndroidRuntime:致命异常:主进程:com。实例艾莎。todocln,PID:6750 java。lang.RuntimeException:无法启动活动组件信息{com.example.aysha.todocln/com.example.aysha.todocln.CalendarActivity}:java。lang.NullPointerException:尝试调用虚拟方法“void android”。支持v7.widget。回收视图。在android的空对象引用上设置LayoutManager(android.support.v7.widget.RecyclerView$LayoutManager)。应用程序。活动线程。android上的performLaunchActivity(ActivityThread.java:2325)。应用程序。活动线程。android上的handleLaunchActivity(ActivityThread.java:2387)。应用程序。活动线程。在android上访问800美元(ActivityThread.java:151)。应用程序。android上的ActivityThread$H.handleMessage(ActivityThread.java:1303)。操作系统。处理程序。android上的dispatchMessage(Handler.java:102)。操作系统。活套。android上的loop(Looper.java:135)。应用程序。活动线程。java上的main(ActivityThread.java:5254)。郎。反思。方法在java中调用(本机方法)。郎。反思。方法在com上调用(Method.java:372)。Android内部的操作系统。ZygoteInit$MethodandArgscaler。在com上运行(ZygoteInit.java:903)。Android内部的操作系统。合子岩。主要(ZygoteInit.java:698)由:java引起。lang.NullPointerException:尝试调用虚拟方法“void android”。支持v7.widget。回收视图。setLayoutManager(android.support.v7.widget.RecyclerView$LayoutManager)在com上的一个空对象引用上。实例艾莎。托多克林。自定义日历视图。updateCalendar(customCalendarView.java:103)位于com。实例艾莎。托多克林。日历活动。android上的onCreate(CalendarActivity.java:87)。应用程序。活动在android上执行创建(Activity.java:5990)。应用程序。仪表。android上的callActivityOnCreate(Instrumentation.java:1106)。应用程序。活动线程。android上的performLaunchActivity(ActivityThread.java:2278)。应用程序。活动线程。handleLaunchActivity(ActivityThread.java:2387)

共有2个答案

张高义
2023-03-14

tnx非常感谢您的帮助ironman我也修复了第二部分,只需将您的代码更改为

充气器=充气器=(LayoutFlater)getContext()。getSystemService(Context.LAYOUT\u INFLATER\u SERVIC‌​E) ;视图=充气机。充气(R.layout.custom\u calendar\u view,this);

相反,使用此

孔经武
2023-03-14

以这种方式更改您的代码

LayoutInflater inflater = inflater = (LayoutInflater) getApplicationContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View view =  inflater.inflate(R.layout.custom_calendar_view, null);

// add Initialization Here

header = (LinearLayout)view.findViewById(R.id.calendar_header);
btnPrev = (ImageView)view.findViewById(R.id.calendar_prev_button);
btnNext = (ImageView)view.findViewById(R.id.calendar_next_button);
txtDate = (TextView)view.findViewById(R.id.calendar_date_display);
grid = (RecyclerView)view.findViewById(R.id.calendarRecycler);
 类似资料:
  • 我正在尝试在我的 上实现 ,但我没有得到任何结果。 我遵循了这个教程和这个技巧,但是没有人为我工作。 我已经实现了: 但它不让我编译,因为它们是不同的< code > viewmoder ,因为我创建了两个< code > viewmoder 类,但它们< code >扩展了Recycler。ViewHolder所以我不明白... 我正在尝试这样做,因为我有一个,我希望当列表为空时,它会显示一个,

  • 我有一个自定义列表视图,其中有一个文本视图和三个图像视图。单击图像视图,我想开始一个新的活动,并将特定位置的数据传递给下一个活动。但我得到了空指针异常。 我用这个做参考http://jmsliu.com/2444/click-button-in-listview-and-get-item-position.html 这是我的密码。这是主要活动 我在这一行遇到了例外 我该怎么做?请帮帮我。 这是我的

  • 我有一个父回收器视图,其中包含一个水平回收器视图作为其项目。在其中,我将显示分类视频。当我开始滚动水平回收器视图时,应用程序崩溃。 错误是: 我的代码是category类 垂直适配器 水平适配器

  • 在其他回收器视图中有一个回收器视图。两者都需要垂直滚动。外部回收器视图滚动正常,但内部回收器视图滚动不正常。 这是代码: ViewAdapter如下: 我尝试了以下两种回收商观点,但都无法解决问题 也尝试了这个:

  • 英文原文:http://emberjs.com/guides/views/customizing-a-views-element 视图在页面上表现为一个单一的DOM元素。通过修改tagName属性,可以改变视图生成的元素的类型。 1 2 3 App.MyView = Ember.View.extend({ tagName: 'span' }); 另外,还可以通过设置一个字符串数组到clas

  • 我能够从URL发送JSON响应,然后当我在RecyclerView上显示相同的响应时,得到的输出是空白的,但选项卡和导航抽屉仍然存在。运行该应用程序时也没有错误。我也在使用截击库。 问题:我在列出服务的RecylerView上没有得到任何输出。我会在这里贴出与RecyclerView相关的代码。另外,我已经在底部发布了堆栈跟踪。 serviceViewAdapter.java(适配器) fragm