Android Open Source - AndroidWearable-Samples Recipe Activity From Project Back to project page AndroidWearable-Samples .
License The source code is released under:
Apache License
If you think the Android project AndroidWearable-Samples listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Java Source Code package com.example.android.wearable.recipeassistant;
/ / w w w . j a v a 2 s . c o m
import android.app.Activity;
import android.app.PendingIntent;
import android.content.Intent;
import android.graphics.Bitmap;
import android.os.Bundle;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.animation.Animation;
import android.view.animation.AnimationUtils;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.TextView;
import org.json.JSONObject;
public class RecipeActivity extends Activity {
private static final String TAG = "RecipeAssistant" ;
private String mRecipeName;
private Recipe mRecipe;
private ImageView mImageView;
private TextView mTitleTextView;
private TextView mSummaryTextView;
private TextView mIngredientsTextView;
private LinearLayout mStepsLayout;
@Override
protected void onStart() {
super.onStart();
Intent intent = getIntent();
mRecipeName = intent.getStringExtra(Constants.RECIPE_NAME_TO_LOAD);
if (Log.isLoggable(TAG, Log.DEBUG)) {
Log.d(TAG, "Intent: " + intent.toString() + " " + mRecipeName);
}
loadRecipe();
}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.recipe);
mTitleTextView = (TextView) findViewById(R.id.recipeTextTitle);
mSummaryTextView = (TextView) findViewById(R.id.recipeTextSummary);
mImageView = (ImageView) findViewById(R.id.recipeImageView);
mIngredientsTextView = (TextView) findViewById(R.id.textIngredients);
mStepsLayout = (LinearLayout) findViewById(R.id.layoutSteps);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case R.id.action_cook:
startCooking();
return true;
}
return super.onOptionsItemSelected(item);
}
private void loadRecipe() {
JSONObject jsonObject = AssetUtils.loadJSONAsset(this , mRecipeName);
if (jsonObject != null) {
mRecipe = Recipe.fromJson(this , jsonObject);
if (mRecipe != null) {
displayRecipe(mRecipe);
}
}
}
private void displayRecipe(Recipe recipe) {
Animation fadeIn = AnimationUtils.loadAnimation(this , android.R.anim.fade_in);
mTitleTextView.setAnimation(fadeIn);
mTitleTextView.setText(recipe.titleText);
mSummaryTextView.setText(recipe.summaryText);
if (recipe.recipeImage != null) {
mImageView.setAnimation(fadeIn);
Bitmap recipeImage = AssetUtils.loadBitmapAsset(this , recipe.recipeImage);
mImageView.setImageBitmap(recipeImage);
}
mIngredientsTextView.setText(recipe.ingredientsText);
findViewById(R.id.ingredientsHeader).setAnimation(fadeIn);
findViewById(R.id.ingredientsHeader).setVisibility(View.VISIBLE);
findViewById(R.id.stepsHeader).setAnimation(fadeIn);
findViewById(R.id.stepsHeader).setVisibility(View.VISIBLE);
LayoutInflater inf = LayoutInflater.from(this );
mStepsLayout.removeAllViews();
int stepNumber = 1;
for (Recipe.RecipeStep step : recipe.recipeSteps) {
View view = inf.inflate(R.layout.step_item, null);
ImageView iv = (ImageView) view.findViewById(R.id.stepImageView);
if (step.stepImage == null) {
iv.setVisibility(View.GONE);
} else {
Bitmap stepImage = AssetUtils.loadBitmapAsset(this , step.stepImage);
iv.setImageBitmap(stepImage);
}
((TextView) view.findViewById(R.id.textStep)).setText(
(stepNumber++) + ". " + step.stepText);
mStepsLayout.addView(view);
}
}
private void startCooking() {
Intent intent = new Intent(this , RecipeService.class);
intent.setAction(Constants.ACTION_START_COOKING);
intent.putExtra(Constants.EXTRA_RECIPE, mRecipe.toBundle());
startService(intent);
}
}
Java Source Code List com.example.android.google.wearable.app.GridExampleActivity.java com.example.android.google.wearable.app.MainActivity.java com.example.android.google.wearable.watchviewstub.MainActivity.java com.example.android.support.wearable.notifications.ActionsPreset.java com.example.android.support.wearable.notifications.ActionsPresets.java com.example.android.support.wearable.notifications.AnimatedNotificationDisplayActivity.java com.example.android.support.wearable.notifications.BackgroundPickers.java com.example.android.support.wearable.notifications.BasicNotificationDisplayActivity.java com.example.android.support.wearable.notifications.MainActivity.java com.example.android.support.wearable.notifications.MainActivity.java com.example.android.support.wearable.notifications.NamedPreset.java com.example.android.support.wearable.notifications.NotificationIntentReceiver.java com.example.android.support.wearable.notifications.NotificationPreset.java com.example.android.support.wearable.notifications.NotificationPreset.java com.example.android.support.wearable.notifications.NotificationPresets.java com.example.android.support.wearable.notifications.NotificationPresets.java com.example.android.support.wearable.notifications.NotificationUtil.java com.example.android.support.wearable.notifications.PriorityPreset.java com.example.android.support.wearable.notifications.PriorityPresets.java com.example.android.support.wearable.notifications.WearableListItemLayout.java com.example.android.wearable.agendadata.CalendarQueryService.java com.example.android.wearable.agendadata.Constants.java com.example.android.wearable.agendadata.Constants.java com.example.android.wearable.agendadata.DeleteService.java com.example.android.wearable.agendadata.HomeListenerService.java com.example.android.wearable.agendadata.MainActivity.java com.example.android.wearable.datalayer.DataLayerListenerService.java com.example.android.wearable.datalayer.MainActivity.java com.example.android.wearable.datalayer.MainActivity.java com.example.android.wearable.delayedconfirmation.MainActivity.java com.example.android.wearable.delayedconfirmation.MainActivity.java com.example.android.wearable.delayedconfirmation.WearableMessageListenerService.java com.example.android.wearable.elizachat.ElizaResponder.java com.example.android.wearable.elizachat.MainActivity.java com.example.android.wearable.elizachat.ResponderService.java com.example.android.wearable.embeddedapp.PhoneActivity.java com.example.android.wearable.embeddedapp.WearableActivity.java com.example.android.wearable.findphone.DisconnectListenerService.java com.example.android.wearable.findphone.FindPhoneActivity.java com.example.android.wearable.findphone.FindPhoneService.java com.example.android.wearable.findphone.SoundAlarmListenerService.java com.example.android.wearable.flashlight.MainActivity.java com.example.android.wearable.flashlight.PartyLightView.java com.example.android.wearable.geofencing.CheckInAndDeleteDataItemsService.java com.example.android.wearable.geofencing.Constants.java com.example.android.wearable.geofencing.Constants.java com.example.android.wearable.geofencing.GeofenceTransitionsIntentService.java com.example.android.wearable.geofencing.HomeListenerService.java com.example.android.wearable.geofencing.MainActivity.java com.example.android.wearable.geofencing.SimpleGeofenceStore.java com.example.android.wearable.geofencing.SimpleGeofence.java com.example.android.wearable.gridviewpager.MainActivity.java com.example.android.wearable.gridviewpager.SampleGridPagerAdapter.java com.example.android.wearable.jumpingjack.MainActivity.java com.example.android.wearable.jumpingjack.PagerAdapter.java com.example.android.wearable.jumpingjack.Utils.java com.example.android.wearable.jumpingjack.fragments.CounterFragment.java com.example.android.wearable.jumpingjack.fragments.SettingsFragment.java com.example.android.wearable.quiz.Constants.java com.example.android.wearable.quiz.Constants.java com.example.android.wearable.quiz.DeleteQuestionService.java com.example.android.wearable.quiz.JsonUtils.java com.example.android.wearable.quiz.MainActivity.java com.example.android.wearable.quiz.QuizListenerService.java com.example.android.wearable.quiz.QuizReportActionService.java com.example.android.wearable.quiz.UpdateQuestionService.java com.example.android.wearable.recipeassistant.AssetUtils.java com.example.android.wearable.recipeassistant.Constants.java com.example.android.wearable.recipeassistant.MainActivity.java com.example.android.wearable.recipeassistant.RecipeActivity.java com.example.android.wearable.recipeassistant.RecipeListAdapter.java com.example.android.wearable.recipeassistant.RecipeService.java com.example.android.wearable.recipeassistant.Recipe.java com.example.android.wearable.synchronizednotifications.DismissListener.java com.example.android.wearable.synchronizednotifications.NotificationUpdateService.java com.example.android.wearable.synchronizednotifications.PhoneActivity.java com.example.android.wearable.synchronizednotifications.WearableActivity.java com.example.android.wearable.synchronizednotifications.common.Constants.java com.example.android.wearable.timer.SetTimerActivity.java com.example.android.wearable.timer.TimerNotificationService.java com.example.android.wearable.timer.util.Constants.java com.example.android.wearable.timer.util.TimerFormat.java com.example.android.wearable.timer.util.TimerObj.java