Ejemplo n.º 1
0
 private void setExtraButton() {
   focusedBookmarkIds = Bookmark.findInBookmarks(this, focusedPlace);
   ImageButton extraBtn = ((ImageButton) findViewById(R.id.place_extra_button));
   if (focusedBookmarkIds.isEmpty()) {
     extraBtn.setImageDrawable(getResources().getDrawable(R.drawable.ic_menu_bookmark_add));
   } else {
     extraBtn.setImageDrawable(getResources().getDrawable(R.drawable.ic_menu_edit));
   }
 }