blob: 6bad6524220b8291afa5b1d107417110bf1ed2a1 [file] [log] [blame]
Adrian Roos00a0b1f2014-07-16 16:44:49 +02001/*
2 * Copyright (C) 2014 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.systemui.qs.tiles;
18
19import com.android.systemui.R;
Adrian Roos19408922014-08-07 20:54:12 +020020import com.android.systemui.qs.PseudoGridView;
Adrian Roos00a0b1f2014-07-16 16:44:49 +020021import com.android.systemui.statusbar.policy.UserSwitcherController;
22
23import android.content.Context;
Adrian Roos00a0b1f2014-07-16 16:44:49 +020024import android.util.AttributeSet;
25import android.view.LayoutInflater;
26import android.view.View;
27import android.view.ViewGroup;
Adrian Roos00a0b1f2014-07-16 16:44:49 +020028
29/**
30 * Quick settings detail view for user switching.
31 */
Adrian Roos19408922014-08-07 20:54:12 +020032public class UserDetailView extends PseudoGridView {
Adrian Roos00a0b1f2014-07-16 16:44:49 +020033
Adrian Roos19408922014-08-07 20:54:12 +020034 private Adapter mAdapter;
Adrian Roos00a0b1f2014-07-16 16:44:49 +020035
36 public UserDetailView(Context context, AttributeSet attrs) {
Adrian Roos19408922014-08-07 20:54:12 +020037 super(context, attrs);
Adrian Roos00a0b1f2014-07-16 16:44:49 +020038 }
39
40 public static UserDetailView inflate(Context context, ViewGroup parent, boolean attach) {
41 return (UserDetailView) LayoutInflater.from(context).inflate(
42 R.layout.qs_user_detail, parent, attach);
43 }
44
45 public void createAndSetAdapter(UserSwitcherController controller) {
Adrian Roos19408922014-08-07 20:54:12 +020046 mAdapter = new Adapter(mContext, controller);
47 ViewGroupAdapterBridge.link(this, mAdapter);
Adrian Roos00a0b1f2014-07-16 16:44:49 +020048 }
49
Adrian Roos844c92b2014-12-01 14:19:05 +010050 public void refreshAdapter() {
51 mAdapter.refresh();
52 }
53
Adrian Roos19408922014-08-07 20:54:12 +020054 public static class Adapter extends UserSwitcherController.BaseUserAdapter
55 implements OnClickListener {
Adrian Roos00a0b1f2014-07-16 16:44:49 +020056
57 private Context mContext;
58
59 public Adapter(Context context, UserSwitcherController controller) {
60 super(controller);
61 mContext = context;
62 }
63
64 @Override
65 public View getView(int position, View convertView, ViewGroup parent) {
66 UserSwitcherController.UserRecord item = getItem(position);
67 UserDetailItemView v = UserDetailItemView.convertOrInflate(
68 mContext, convertView, parent);
Adrian Roos19408922014-08-07 20:54:12 +020069 if (v != convertView) {
70 v.setOnClickListener(this);
71 }
Adrian Roose9c7d432014-07-17 18:27:38 +020072 String name = getName(mContext, item);
Adrian Roos00a0b1f2014-07-16 16:44:49 +020073 if (item.picture == null) {
Adrian Roosccdff622014-08-06 00:07:18 +020074 v.bind(name, getDrawable(mContext, item));
Adrian Roos00a0b1f2014-07-16 16:44:49 +020075 } else {
76 v.bind(name, item.picture);
77 }
78 v.setActivated(item.isCurrent);
79 v.setTag(item);
80 return v;
81 }
Adrian Roos19408922014-08-07 20:54:12 +020082
83 @Override
84 public void onClick(View view) {
85 UserSwitcherController.UserRecord tag =
86 (UserSwitcherController.UserRecord) view.getTag();
87 switchTo(tag);
88 }
Adrian Roos00a0b1f2014-07-16 16:44:49 +020089 }
90}