blob: 0b32735cbc971c4b31a1599e9b0b1d73027ae20a [file] [log] [blame]
/*
* Copyright (C) 2017 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License
*/
package com.android.car.settings.common;
import android.os.Bundle;
import androidx.car.widget.DayNightStyle;
import androidx.car.widget.PagedListView;
import com.android.car.list.TypedPagedListAdapter;
import com.android.car.settings.R;
import java.util.ArrayList;
/**
* Settings page that only contain a list of items.
*/
public abstract class ListSettingsFragment extends BaseFragment {
protected PagedListView mListView;
protected TypedPagedListAdapter mPagedListAdapter;
protected static Bundle getBundle() {
Bundle bundle = BaseFragment.getBundle();
bundle.putInt(EXTRA_LAYOUT, R.layout.list_fragment);
return bundle;
}
@Override
public void onActivityCreated(Bundle savedInstanceState) {
super.onActivityCreated(savedInstanceState);
mListView = (PagedListView) getView().findViewById(R.id.list);
mListView.setDayNightStyle(DayNightStyle.AUTO);
mPagedListAdapter = new TypedPagedListAdapter(getLineItems());
mListView.setAdapter(mPagedListAdapter);
}
/**
* Gets a List of LineItems to show up in this activity.
*/
public abstract ArrayList<TypedPagedListAdapter.LineItem> getLineItems();
}