Home | History | Annotate | Download | only in tiles
      1 /*
      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 
     17 package com.android.systemui.qs.tiles;
     18 
     19 import com.android.systemui.R;
     20 import com.android.systemui.qs.PseudoGridView;
     21 import com.android.systemui.statusbar.policy.UserSwitcherController;
     22 
     23 import android.content.Context;
     24 import android.util.AttributeSet;
     25 import android.view.LayoutInflater;
     26 import android.view.View;
     27 import android.view.ViewGroup;
     28 
     29 /**
     30  * Quick settings detail view for user switching.
     31  */
     32 public class UserDetailView extends PseudoGridView {
     33 
     34     private Adapter mAdapter;
     35 
     36     public UserDetailView(Context context, AttributeSet attrs) {
     37         super(context, attrs);
     38     }
     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) {
     46         mAdapter = new Adapter(mContext, controller);
     47         ViewGroupAdapterBridge.link(this, mAdapter);
     48     }
     49 
     50     public static class Adapter extends UserSwitcherController.BaseUserAdapter
     51             implements OnClickListener {
     52 
     53         private Context mContext;
     54 
     55         public Adapter(Context context, UserSwitcherController controller) {
     56             super(controller);
     57             mContext = context;
     58         }
     59 
     60         @Override
     61         public View getView(int position, View convertView, ViewGroup parent) {
     62             UserSwitcherController.UserRecord item = getItem(position);
     63             UserDetailItemView v = UserDetailItemView.convertOrInflate(
     64                     mContext, convertView, parent);
     65             if (v != convertView) {
     66                 v.setOnClickListener(this);
     67             }
     68             String name = getName(mContext, item);
     69             if (item.picture == null) {
     70                 v.bind(name, getDrawable(mContext, item));
     71             } else {
     72                 v.bind(name, item.picture);
     73             }
     74             v.setActivated(item.isCurrent);
     75             v.setTag(item);
     76             return v;
     77         }
     78 
     79         @Override
     80         public void onClick(View view) {
     81             UserSwitcherController.UserRecord tag =
     82                     (UserSwitcherController.UserRecord) view.getTag();
     83             switchTo(tag);
     84         }
     85     }
     86 }
     87