• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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.example.android.wearable.recipeassistant;
18 
19 import android.app.ListActivity;
20 import android.content.Intent;
21 import android.os.Bundle;
22 import android.util.Log;
23 import android.view.View;
24 import android.widget.ListView;
25 
26 public class MainActivity extends ListActivity {
27 
28     private static final String TAG = "RecipeAssistant";
29     private RecipeListAdapter mAdapter;
30 
31     @Override
onListItemClick(ListView l, View v, int position, long id)32     protected void onListItemClick(ListView l, View v, int position, long id) {
33         if (Log.isLoggable(TAG, Log.DEBUG)) {
34             Log.d(TAG , "onListItemClick " + position);
35         }
36         String itemName = mAdapter.getItemName(position);
37         Intent intent = new Intent(getApplicationContext(), RecipeActivity.class);
38         intent.putExtra(Constants.RECIPE_NAME_TO_LOAD, itemName);
39         startActivity(intent);
40     }
41 
42     @Override
onCreate(Bundle savedInstanceState)43     protected void onCreate(Bundle savedInstanceState) {
44         super.onCreate(savedInstanceState);
45         setContentView(android.R.layout.list_content);
46 
47         mAdapter = new RecipeListAdapter(this);
48         setListAdapter(mAdapter);
49     }
50 }
51