blob: ba7661b0b97cdb776cb0883477f82a141b054197 [file] [log] [blame]
roger xueb9104e02017-03-02 16:05:00 -08001/*
2 * Copyright (C) 2017 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License
15 */
16
17package com.android.car.settings.common;
18
roger xueb9104e02017-03-02 16:05:00 -080019import android.support.v7.widget.RecyclerView;
20import android.content.Context;
21import android.graphics.Canvas;
Rakesh Iyerd28162c2017-03-27 14:44:13 -070022import com.android.car.view.PagedListView;
roger xueb9104e02017-03-02 16:05:00 -080023
24/**
Rakesh Iyerd28162c2017-03-27 14:44:13 -070025 * Default {@link com.android.car.view.PagedListView.Decoration} for the {@link PagedListView}
roger xueb9104e02017-03-02 16:05:00 -080026 * that removes the dividing lines between items.
27 */
28public class NoDividerItemDecoration extends PagedListView.Decoration {
29 public NoDividerItemDecoration(Context context) {
30 super(context);
31 }
32
33 @Override
34 public void onDrawOver(Canvas c, RecyclerView parent, RecyclerView.State state) {}
35}