1632721e6b3a9ba8c476456f2e0fb1b564561e0b5Andy Huang/*
2632721e6b3a9ba8c476456f2e0fb1b564561e0b5Andy Huang * Copyright (C) 2012 Google Inc.
3632721e6b3a9ba8c476456f2e0fb1b564561e0b5Andy Huang * Licensed to The Android Open Source Project.
4632721e6b3a9ba8c476456f2e0fb1b564561e0b5Andy Huang *
5632721e6b3a9ba8c476456f2e0fb1b564561e0b5Andy Huang * Licensed under the Apache License, Version 2.0 (the "License");
6632721e6b3a9ba8c476456f2e0fb1b564561e0b5Andy Huang * you may not use this file except in compliance with the License.
7632721e6b3a9ba8c476456f2e0fb1b564561e0b5Andy Huang * You may obtain a copy of the License at
8632721e6b3a9ba8c476456f2e0fb1b564561e0b5Andy Huang *
9632721e6b3a9ba8c476456f2e0fb1b564561e0b5Andy Huang *      http://www.apache.org/licenses/LICENSE-2.0
10632721e6b3a9ba8c476456f2e0fb1b564561e0b5Andy Huang *
11632721e6b3a9ba8c476456f2e0fb1b564561e0b5Andy Huang * Unless required by applicable law or agreed to in writing, software
12632721e6b3a9ba8c476456f2e0fb1b564561e0b5Andy Huang * distributed under the License is distributed on an "AS IS" BASIS,
13632721e6b3a9ba8c476456f2e0fb1b564561e0b5Andy Huang * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14632721e6b3a9ba8c476456f2e0fb1b564561e0b5Andy Huang * See the License for the specific language governing permissions and
15632721e6b3a9ba8c476456f2e0fb1b564561e0b5Andy Huang * limitations under the License.
16632721e6b3a9ba8c476456f2e0fb1b564561e0b5Andy Huang */
17632721e6b3a9ba8c476456f2e0fb1b564561e0b5Andy Huang
18632721e6b3a9ba8c476456f2e0fb1b564561e0b5Andy Huangpackage com.android.mail.browse;
19632721e6b3a9ba8c476456f2e0fb1b564561e0b5Andy Huang
20632721e6b3a9ba8c476456f2e0fb1b564561e0b5Andy Huangimport android.content.Context;
21632721e6b3a9ba8c476456f2e0fb1b564561e0b5Andy Huangimport android.support.v4.view.ViewPager;
22632721e6b3a9ba8c476456f2e0fb1b564561e0b5Andy Huangimport android.util.AttributeSet;
23632721e6b3a9ba8c476456f2e0fb1b564561e0b5Andy Huang
24632721e6b3a9ba8c476456f2e0fb1b564561e0b5Andy Huangpublic class ConversationPager extends ViewPager {
25632721e6b3a9ba8c476456f2e0fb1b564561e0b5Andy Huang
26632721e6b3a9ba8c476456f2e0fb1b564561e0b5Andy Huang    public ConversationPager(Context context) {
27632721e6b3a9ba8c476456f2e0fb1b564561e0b5Andy Huang        this(context, null);
28632721e6b3a9ba8c476456f2e0fb1b564561e0b5Andy Huang    }
29632721e6b3a9ba8c476456f2e0fb1b564561e0b5Andy Huang
30632721e6b3a9ba8c476456f2e0fb1b564561e0b5Andy Huang    public ConversationPager(Context context, AttributeSet attrs) {
31632721e6b3a9ba8c476456f2e0fb1b564561e0b5Andy Huang        super(context, attrs);
32632721e6b3a9ba8c476456f2e0fb1b564561e0b5Andy Huang    }
33632721e6b3a9ba8c476456f2e0fb1b564561e0b5Andy Huang
34632721e6b3a9ba8c476456f2e0fb1b564561e0b5Andy Huang    // this space intentionally blank (reserved for various debugging hooks)
35632721e6b3a9ba8c476456f2e0fb1b564561e0b5Andy Huang
36632721e6b3a9ba8c476456f2e0fb1b564561e0b5Andy Huang}
37