OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DashboardCategory
(Results
1 - 8
of
8
) sorted by null
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/drawer/
DashboardCategory.java
26
public class
DashboardCategory
implements Parcelable {
49
public
DashboardCategory
() {
110
DashboardCategory
(Parcel in) {
114
public static final Creator<
DashboardCategory
> CREATOR = new Creator<
DashboardCategory
>() {
115
public
DashboardCategory
createFromParcel(Parcel source) {
116
return new
DashboardCategory
(source);
119
public
DashboardCategory
[] newArray(int size) {
120
return new
DashboardCategory
[size];
TileUtils.java
116
public static List<
DashboardCategory
> getCategories(Context context,
137
HashMap<String,
DashboardCategory
> categoryMap = new HashMap<>();
139
DashboardCategory
category = categoryMap.get(tile.category);
150
ArrayList<
DashboardCategory
> categories = new ArrayList<>(categoryMap.values());
151
for (
DashboardCategory
category : categories) {
160
private static
DashboardCategory
createCategory(Context context, String categoryKey) {
161
DashboardCategory
category = new
DashboardCategory
();
241
private static
DashboardCategory
getCategory(List<
DashboardCategory
> target
[
all
...]
SettingsDrawerActivity.java
62
private static List<
DashboardCategory
> sDashboardCategories;
232
public List<
DashboardCategory
> getDashboardCategories() {
319
private class CategoriesUpdater extends AsyncTask<Void, Void, List<
DashboardCategory
>> {
321
protected List<
DashboardCategory
> doInBackground(Void... params) {
336
protected void onPostExecute(List<
DashboardCategory
> dashboardCategories) {
338
DashboardCategory
category = dashboardCategories.get(i);
SettingsDrawerAdapter.java
41
List<
DashboardCategory
> categories = mActivity.getDashboardCategories();
52
DashboardCategory
dashboardCategory
= categories.get(i);
53
category.label =
dashboardCategory
.title;
55
for (int j = 0; j <
dashboardCategory
.tiles.size(); j++) {
57
Tile dashboardTile =
dashboardCategory
.tiles.get(j);
/packages/apps/Settings/src/com/android/settings/dashboard/
SummaryLoader.java
33
import com.android.settingslib.drawer.
DashboardCategory
;
60
public SummaryLoader(Activity activity, List<
DashboardCategory
> categories) {
98
final List<
DashboardCategory
> categories =
207
private Tile getTileFromCategory(List<
DashboardCategory
> categories, ComponentName component) {
216
final
DashboardCategory
category = categories.get(i);
DashboardSummary.java
41
import com.android.settingslib.drawer.
DashboardCategory
;
85
List<
DashboardCategory
> categories =
239
List<
DashboardCategory
> categories =
DashboardAdapter.java
44
import com.android.settingslib.drawer.
DashboardCategory
;
75
private List<
DashboardCategory
> mCategories;
112
public void setCategoriesAndSuggestions(List<
DashboardCategory
> categories,
175
DashboardCategory
category = mCategories.get(i);
226
onBindCategory(holder, (
DashboardCategory
) mItems.get(position));
345
private void onBindCategory(DashboardItemHolder holder,
DashboardCategory
category) {
432
new ArrayList<
DashboardCategory
>(mCategories));
/packages/apps/Settings/src/com/android/settings/
SettingsActivity.java
130
import com.android.settingslib.drawer.
DashboardCategory
;
416
private ArrayList<
DashboardCategory
> mCategories = new ArrayList<
DashboardCategory
>();
594
ArrayList<
DashboardCategory
> categories =
[
all
...]
Completed in 1196 milliseconds