Home | History | Annotate | Download | only in wearaccessibilityapp
      1 /*
      2  * Copyright (C) 2017 Google Inc. All Rights Reserved.
      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 package com.example.android.wearable.wear.wearaccessibilityapp;
     17 
     18 import android.app.Activity;
     19 import android.content.Context;
     20 import android.content.Intent;
     21 
     22 public class AppItem {
     23     private final String mItemName;
     24     private final int mImageId;
     25     private final int mViewType;
     26     private final Class mClass;
     27 
     28     public AppItem(String itemName, int imageId, int viewType, Class<? extends Activity> clazz) {
     29         mItemName = itemName;
     30         mImageId = imageId;
     31         mViewType = viewType;
     32         mClass = clazz;
     33     }
     34 
     35     public AppItem(String itemName, int imageId, Class<? extends Activity> clazz) {
     36         mItemName = itemName;
     37         mImageId = imageId;
     38         mViewType = SampleAppConstants.NORMAL;
     39         mClass = clazz;
     40     }
     41 
     42     public String getItemName() {
     43         return mItemName;
     44     }
     45 
     46     public int getImageId() {
     47         return mImageId;
     48     }
     49 
     50     public int getViewType() {
     51         return mViewType;
     52     }
     53 
     54     public void launchActivity(Context context) {
     55         context.startActivity(new Intent(context, mClass));
     56     }
     57 }
     58