blob: 1c8ec95cf4cab6734bdde194c996c0db5442e940 [file] [log] [blame]
Jim Miller783cb602010-09-02 18:08:05 -07001/*
2 * Copyright (C) 2010 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
Joe Onorato013cfc12010-09-08 15:23:18 -040017package com.android.systemui.recent;
Jim Miller783cb602010-09-02 18:08:05 -070018
19import android.content.Context;
20import android.util.AttributeSet;
21
22import com.android.ex.carousel.CarouselView;
23import com.android.systemui.R;
24
25public class RecentApplicationsCarouselView extends CarouselView {
26
27 public RecentApplicationsCarouselView(Context context) {
28 this(context, null);
29 }
30
31 public RecentApplicationsCarouselView(Context context, AttributeSet attrs) {
32 super(context, attrs);
33 }
34
35 public Info getRenderScriptInfo() {
36 return new Info(R.raw.carousel);
37 }
38
39}