Fix cast from int to Integer

master
DjBushido 2014-03-24 09:46:15 -04:00
parent cc1f93e693
commit d6b5f86f66
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@ public class MainActivity extends Activity {
int position, long id) int position, long id)
{ {
//Send intent with R.array.label //Send intent with R.array.label
galleryIntent.putExtra("thumbsId", (int)(imageAdapter.getItem(position))); galleryIntent.putExtra("thumbsId", (Integer)(imageAdapter.getItem(position)));
startActivity(galleryIntent); startActivity(galleryIntent);
} }
}); });